-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoods.kv
48 lines (41 loc) · 1.05 KB
/
goods.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
ScreenManager:
SplashScreen:
MenuScreen:
ProfileScreen:
SignScreen:
SearchScreen:
GoodsScreen:
ServiceScreen:
<GoodsScreen>:
name: 'goods'
MDIconButton:
icon: "chevron-left-circle-outline"
pos_hint: {"center_y": .90}
user_font_size: "30sp"
theme_text_color: "Custom"
text_color: rgba(26, 24, 58, 255)
on_release:
root.manager.transition.direction = "right"
root.manager.current = "search"
ScrollView:
size_hint_y: .73
pos_hint: {'x':0, 'y': .11}
do_scroll_x: False
do_scroll_y: True
GridLayout:
size:(root.width, root.height)
size_hint_x: None
size_hint_y: None
cols: 1
height: self.minimum_height
row_default_height: 180
row_force_default: True
Button:
text: 'Hello World'
background_color: (1, 0, 0, 1)
Button:
text: 'Hello World'
background_color: (0, 0, 1, 1)
Button:
text: 'Hello World'
background_color: (1, 0, 0, 1)