diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-08-20 02:09:44 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-08-20 02:09:44 -0400 |
commit | 4dc99b2d0ac8cb741d1cd968d46026fae70d031e (patch) | |
tree | 534d4a9198ff07292d870e3a4401a96eedf03a6a /screens/TimeSlot/TaskItem.tscn | |
parent | fafa76fe3ae14a02a71423843d1387a0930b00f6 (diff) | |
download | Planner-4dc99b2d0ac8cb741d1cd968d46026fae70d031e.tar.gz Planner-4dc99b2d0ac8cb741d1cd968d46026fae70d031e.zip |
Add basic mockups of two screens and prototype navigation
Diffstat (limited to '')
-rw-r--r-- | screens/TimeSlot/TaskItem.tscn | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/screens/TimeSlot/TaskItem.tscn b/screens/TimeSlot/TaskItem.tscn new file mode 100644 index 0000000..75ef95d --- /dev/null +++ b/screens/TimeSlot/TaskItem.tscn @@ -0,0 +1,53 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1] + +[sub_resource type="DynamicFont" id=1] +size = 72 +font_data = ExtResource( 1 ) + +[node name="TaskItem" type="MarginContainer"] +margin_right = 1026.0 +margin_bottom = 110.0 +custom_constants/margin_top = 5 +custom_constants/margin_bottom = 5 + +[node name="Button" type="Button" parent="."] +margin_top = 5.0 +margin_right = 1026.0 +margin_bottom = 105.0 +rect_min_size = Vector2( 0, 100 ) + +[node name="HBoxContainer" type="HBoxContainer" parent="Button"] +margin_right = 1026.0 +margin_bottom = 100.0 +alignment = 2 + +[node name="Name" type="Label" parent="Button/HBoxContainer"] +margin_top = 8.0 +margin_right = 493.0 +margin_bottom = 92.0 +size_flags_horizontal = 3 +custom_fonts/font = SubResource( 1 ) +text = "Stretching" +clip_text = true + +[node name="Length" type="Label" parent="Button/HBoxContainer"] +margin_left = 497.0 +margin_top = 8.0 +margin_right = 722.0 +margin_bottom = 92.0 +custom_fonts/font = SubResource( 1 ) +text = "10 min" +align = 2 + +[node name="Frequency" type="Label" parent="Button/HBoxContainer"] +margin_left = 726.0 +margin_top = 8.0 +margin_right = 1026.0 +margin_bottom = 92.0 +rect_min_size = Vector2( 300, 0 ) +custom_fonts/font = SubResource( 1 ) +text = "Daily" +align = 2 +clip_text = true |