-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainMenu.kv
40 lines (36 loc) · 1.1 KB
/
MainMenu.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
<MainMenu>:
FitImage:
source: 'MenuImage.jpg'
MDBoxLayout:
orientation: 'vertical'
padding: 30
spacing: 10
MDLabel:
size_hint: 1, 0.2
valign: 'top'
halign: 'center'
text: 'Ф р а к т а л ы'
theme_text_color: "Custom"
text_color: 1, 1, 1, 1
font_style: 'H3'
italic: True
Widget:
size_hint: 1, 0.25
MDRaisedButton:
pos_hint:{"center_x": 0.5, "center_y": 0.5}
size_hint: 0.35, 0.1
text: "Начать"
text_color: 1, 1, 1, 1
md_bg_color: .43, .43, .43, 0.7
on_release:
root.manager.transition.direction = 'up'
root.manager.current = 'fractals'
MDRaisedButton:
pos_hint:{"center_x": 0.5, "center_y": 0.5}
size_hint: 0.35, 0.1
text: "Выход"
text_color: 1, 1, 1, 1
md_bg_color: .43, .43, .43, 0.7
on_release: exit()
Widget:
size_hint: 1, 0.25