-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.kv
66 lines (54 loc) · 1.41 KB
/
calendar.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<MonthScreen>
BoxLayout:
orientation: 'vertical'
canvas:
Rectangle:
pos: self.pos
size: self.size
source: root.background_source
BoxLayout:
id: month
size_hint: (1, .1)
BoxLayout:
id: week
size_hint: (1, .1)
GridLayout:
id: dateScreen
padding: 20
spacing: 5
cols: 7
rows: 6
size_hint: (1, .6)
GridLayout:
size_hint: (1, .1)
padding: [20, 0, 20, 0]
spacing: 5
cols: 2
rows: 3
Button:
id: backBTN
background_normal: ''
background_down: ''
color: (.2, .2, .2, 1)
Button:
id: forwBTN
background_normal: ''
background_down: ''
color: (.2, .2, .2, 1)
Button:
id: nowBTN
background_color: (.76, .81, .82, .75)
background_normal: ''
background_down: ''
color: (.2, .2, .2, 1)
Button:
text:'ВЫБРАТЬ ДАТУ'
id: jumpToBTN
on_press: root.jump_to_date()
background_color: (.76, .81, .82, .75)
background_normal: ''
background_down: ''
color: (.2, .2, .2, 1)
BoxLayout:
size_hint: (1, .1)
orientation: 'vertical'