-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.kv
116 lines (88 loc) · 2.68 KB
/
gui.kv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<ScreenManagement>:
HomeScreen:
id: homeScreen
PersonalDetails:
id: personalDetails
<HomeScreen>:
name: 'homeScreen'
GridLayout:
cols:1
padding:10
spacing:10
Button:
text: 'Edit Personal Details'
on_release: app.root.current = 'personalDetails'
Button:
text: 'Edit Invidual Projects'
Button:
text: 'Edit Skills Paragraphs'
Button:
text: 'Edit Additional Information'
Button:
text: 'New Company Application'
<CustomDropDown>:
Button:
text: 'My first Item'
size_hint_y: None
height: 44
on_release: root.select('item1')
Label:
text: 'Unselectable item'
size_hint_y: None
height: 44
Button:
text: 'My second Item'
size_hint_y: None
height: 44
on_release: root.select('item2')
<personalDetails>:
name: 'personalDetails'
GridLayout:
rows:2
padding: 10
GridLayout:
cols:2
size_hint_y: 5
Label:
size_hint_x: 3
TextInput:
size_hint_x: 7
text:''
multiline: False
Label:
size_hint_x: 3
text:'Mobile Number'
TextInput:
size_hint_x: 7
text:''
multiline: False
Label:
size_hint_x: 3
text:'Personal Email'
TextInput:
size_hint_x: 7
text:''
multiline: False
Label:
size_hint_x: 3
text:'Internship Or Job'
Button:
text:'selection'
Label:
size_hint_x: 3
text:'Available Time Period'
TextInput:
size_hint_x: 7
text:''
multiline: False
GridLayout:
cols:3
size_hint_y: 1
padding:10
Button:
text:'load last save'
Button:
text:'save current'
Button:
text:'Back to Main Menu'
on_release: app.root.current = 'homeScreen'