-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main
41 lines (39 loc) · 1.11 KB
/
Main
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
#:import Window kivy.core.window.Window
<MainScreen>:
BoxLayout:
orientation:'vertical'
ScrollView:
GridLayout:
size_hint:(None,None)
id:Grid
cols:Window.width//100-1
padding:[10, 120, 0, 100]
spacing:30
ActionBar:
pos_hint: {'top':1}
ActionView:
use_separator: True
ActionPrevious:
title:'File Manager'
with_previous: False
ActionOverflow:
ActionButton:
text: 'History'
ActionBar:
pos_hint: {'bottom':1}
ActionView:
use_separator: True
ActionPrevious:
id:Action
title:'Selected Files: '
on_press:root.back()
ActionOverflow:
ActionButton:
text: 'Coppy'
on_press: root.copy()
id:Copy
ActionButton:
text: 'Download'
on_press: root.download()
ActionButton:
text: 'Details'