-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmygui.kv
102 lines (70 loc) · 2.36 KB
/
mygui.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
<PersonalDetails>
name:name
mobileNo:mobileNo
personalEmail:personalEmail
internshipOrJob:internshipOrJob
availableTimePeriod:availableTimePeriod
GridLayout:
cols:1
size: root.width, root.height
Label:
text:'Personal Details'
GridLayout:
cols:2
Label:
text:'Full Name'
TextInput:
id:name
multiline:False
Label:
text:'Mobile Number'
TextInput:
id:mobileNo
multiline:False
Label:
text:'Personal Email'
TextInput:
id:personalEmail
multiline:False
Label:
text:'Internship Or Job'
Button:
id:internshipOrJob
text:'Internship'
on_press:root.toggleJob()
Label:
text:'Available Time Period'
TextInput:
id:availableTimePeriod
multiline:False
Button:
text:'Submit Personal Details'
on_press:root.savePersonalDetails()
<IndividualProjects>:
gridLayout:gridLayout
GridLayout:
scrollView:scrollView
id:gridLayout
size: root.width, root.height
cols:1
ScrollView:
size_hint:1,None
gridLayoutInner:gridLayoutInner
id:scrollView
GridLayout:
id:gridLayoutInner
cols:1
GridLayout:
cols:2
Label:
text:'Overarching theme for new project'
TextInput:
multiline:False
Label:
text:'Details of Individual Project'
TextInput:
multiline:True
Label:
text:''
Button:
text:'Add Individual Project'