-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.kv
28 lines (28 loc) · 975 Bytes
/
main.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
<MainScreen>:
id: main_screen
name: 'main_screen'
BoxLayout:
orientation: 'vertical'
size_hint_y: None
pos_hint: {'top': 0.9}
MDLabel:
text: 'DataShare'
font_style: 'H3'
halign: 'center'
BoxLayout:
orientation: 'horizontal'
spacing: dp(20)
padding: [dp(10), 0, dp(10), 0]
size_hint_y: None
MDRectangleFlatButton:
text: "SEND"
size_hint_x: 0.4
text_color: app.theme_cls.opposite_bg_dark
md_bg_color: app.theme_cls.primary_light
on_release: app.sm.current = 'send_screen'
MDRectangleFlatButton:
text: "RECEIVE"
size_hint_x: 0.4
text_color: app.theme_cls.opposite_bg_dark
md_bg_color: app.theme_cls.primary_dark
on_release: app.sm.current = 'receive_screen'