-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.kv
110 lines (86 loc) · 2.88 KB
/
main.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Start menu screen stuff defined here
<StartMenuScreen>
# This section is for app background
canvas.before:
Rectangle:
pos: self.pos
size: self.size
source: root.background
# This section is out screen layout which is a float layout
FloatLayout:
# ID for our float layout (if needed)
id: floatlayout
# This section is for our app action bar
ActionBar:
# Size & Position
pos_hint: {'top':1}
height: 55
# Style
background_color: '#00000077'
# Action View
ActionView:
use_separator: True
# Action Previous
ActionPrevious:
halign: 'center'
title: f'[b][font={root.KremlinMenshevik}][color=#ffffff]Post[/color][color=#2fa7d4]Fix[/font][/color][/b]'
with_previous: False
markup: True
app_icon: "no_picture.png"
# This section is for our text input
TextInput:
# ID for text input
id: textinput
# Size & Position
pos_hint: {"center_x": 0.5, "center_y": 0.78}
size_hint: (0.6, None)
height: "35dp"
line_width: 1
# Style
multiline: False
background_color: "#000000bb"
foreground_color: "#ffffff"
cursor_color: "#2fa7d4"
cursor_width: 2
font_name: root.SourceCodePro
halign: "left"
hint_text: "Expression (a+b-c)..."
hint_text_color: "#00cccc66"
selection_color: "#77777755"
# Label for help message
Label:
# Size & Position
pos_hint: {"center_x": 0.5, "center_y": 0.65}
size_hint: (0.6, 0.2)
# Style
markup: True
text: "[b]Enter expression without space.[/b]"
font_name: root.SourceCodePro
color: "00ffff"
# Postfix convert button
Button:
# ID
id: convert
# Size & Position
size_hint: (0.6, None)
pos_hint: {"center_x": 0.5, "center_y": 0.55}
height: "35dp"
# Style
markup: True
text: "[b][font=KremlinMenshevikBold]Convert[/font][/b]"
background_color: "#00000077"
# Action
on_press:
root.convert(textinput, output)
# Output
Label:
# ID
id: output
# Size & Position
pos_hint: {"center_x": 0.5, "center_y": 0.42}
size_hint: (0.6, 0.2)
# Style
markup: True
text: "[b]Output here...[/b]"
font_name: root.SourceCodePro
color: "ff0000"