-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontroller.kv
48 lines (44 loc) · 1.34 KB
/
controller.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
#:kivy 1.0
<Controller>:
label_wid: my_custom_label
BoxLayout:
orientation: 'vertical'
TextInput:
id: my_custom_label
font_size: '50sp'
size_hint_y: 0.8
readonly: True
padding:40
text: 'TWEETS WILL BE DISPLAYED HERE, ENJOY!'
BoxLayout:
size_hint_y: 0.2
orientation: 'horizontal'
Button:
id: btn_start
text: 'Start'
on_press: root.do_action()
BoxLayout:
orientation: 'vertical'
Label:
text: 'Project Name'
TextInput:
id: project_input
size_hint_y: None
height: '32dp'
text: ''
focus: True
Label:
text: 'Search Terms (comma separated)'
TextInput:
id: search_terms
size_hint_y: None
height: '32dp'
text: ''
Label:
text: 'Output URL'
TextInput:
id: project_output
size_hint_y: None
height: '32dp'
text: ''
readonly: True