From 4dc99b2d0ac8cb741d1cd968d46026fae70d031e Mon Sep 17 00:00:00 2001 From: dusoleil Date: Sat, 20 Aug 2022 02:09:44 -0400 Subject: Add basic mockups of two screens and prototype navigation --- screens/TimeSlot/Header.tscn | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 screens/TimeSlot/Header.tscn (limited to 'screens/TimeSlot/Header.tscn') diff --git a/screens/TimeSlot/Header.tscn b/screens/TimeSlot/Header.tscn new file mode 100644 index 0000000..2823e6a --- /dev/null +++ b/screens/TimeSlot/Header.tscn @@ -0,0 +1,33 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://fonts/DroidSans.ttf" type="DynamicFontData" id=1] +[ext_resource path="res://screens/TimeSlot/Header.gd" type="Script" id=2] + +[sub_resource type="DynamicFont" id=2] +size = 100 +font_data = ExtResource( 1 ) + +[node name="TimeslotHeader" type="HBoxContainer"] +margin_left = 20.0 +margin_top = 20.0 +margin_right = 1046.0 +margin_bottom = 198.0 +script = ExtResource( 2 ) + +[node name="Name" type="Label" parent="."] +margin_top = 30.0 +margin_right = 799.0 +margin_bottom = 147.0 +size_flags_horizontal = 3 +custom_fonts/font = SubResource( 2 ) +text = "Chores" +clip_text = true + +[node name="Back" type="Button" parent="."] +margin_left = 803.0 +margin_right = 1026.0 +margin_bottom = 178.0 +custom_fonts/font = SubResource( 2 ) +text = "Back" + +[connection signal="button_up" from="Back" to="." method="_on_Back_button_up"] -- cgit v1.2.3