-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreensetui.kv
39 lines (38 loc) · 1.31 KB
/
screensetui.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
<ScreenSetUI>:
name: "screenSetUI"
MDBoxLayout:
orientation: "vertical"
spacing:16
MDBoxLayout:#占位
size_hint_y:.6
MDRelativeLayout:
size_hint_y:.3
MDLabel:
pos_hint: {'center_x': .25, 'center_y': .75}
text:'用自定义背景图'
halign:"center"
MDSwitch:
id:id_sw_bkimg
pos_hint: {'center_x': .55, 'center_y': .70}
active:False
MDLabel:
pos_hint: {'center_x': .25, 'center_y': .5}
text:'使用自定义棋子'
halign:"center"
MDSwitch:
id:id_sw_piece
pos_hint: {'center_x': .55, 'center_y': .45}
active:False
MDRelativeLayout:
size_hint_y:.1
orientation: "horizontal"
MDRectangleFlatButton:
pos_hint:{"center_x": .25, "center_y": .5}
text: "保存"
theme_text_color: "Custom"
text_color: "orange"
on_release:app.save_ui_settings()
MDRectangleFlatButton:
pos_hint:{"center_x": .75, "center_y": .5}
text: "返回"
on_release:app.back_mainScreen()