2024-04-29 22:12:07 +02:00
|
|
|
<RanNum>:
|
|
|
|
|
BoxLayout:
|
|
|
|
|
orientation: 'vertical'
|
2024-04-30 16:56:02 +02:00
|
|
|
Image:
|
|
|
|
|
source: 'zufall.png'
|
2024-04-29 22:12:07 +02:00
|
|
|
TextInput:
|
|
|
|
|
id: upper_boundary_input
|
|
|
|
|
multiline: False
|
|
|
|
|
halign: 'center'
|
2024-04-29 22:49:29 +02:00
|
|
|
font_size: app.font_size
|
2024-04-29 22:12:07 +02:00
|
|
|
size_hint: .8, None
|
|
|
|
|
height: 42
|
|
|
|
|
hint_text: 'Gib eine Zahl ein!'
|
|
|
|
|
input_filter: 'int'
|
|
|
|
|
pos_hint: {'x': .1}
|
|
|
|
|
Label:
|
|
|
|
|
size_hint: None, .2
|
|
|
|
|
Button:
|
|
|
|
|
text: 'Generate!'
|
2024-04-29 22:49:29 +02:00
|
|
|
font_size: app.font_size
|
2024-04-29 22:12:07 +02:00
|
|
|
size_hint: .5, None
|
|
|
|
|
pos_hint: {'x': .25}
|
2024-04-29 22:49:29 +02:00
|
|
|
on_release: app.ran_num.generate_random_number()
|
2024-04-29 22:12:07 +02:00
|
|
|
Label:
|
|
|
|
|
id: output
|
|
|
|
|
text: 'Meine Zufallszahl'
|
|
|
|
|
halign: 'center'
|
2024-04-29 22:49:29 +02:00
|
|
|
font_size: app.font_size
|