mirror of
https://github.com/markqvist/Sideband.git
synced 2025-12-10 06:15:38 -05:00
Use local version of able
This commit is contained in:
parent
2e44d49d6b
commit
9b6a51a03e
67 changed files with 5305 additions and 0 deletions
21
libs/able/examples/alert/error_message.kv
Normal file
21
libs/able/examples/alert/error_message.kv
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<ErrorMessage>:
|
||||
BoxLayout:
|
||||
orientation: 'vertical'
|
||||
padding: 10
|
||||
spacing: 20
|
||||
Label:
|
||||
size_hint_y: None
|
||||
font_size: '18sp'
|
||||
height: '24sp'
|
||||
text: 'Application has crashed, details: '
|
||||
ScrollView:
|
||||
size_hint: 1, 1
|
||||
TextInput:
|
||||
text: root.message
|
||||
size_hint: 1, None
|
||||
height: self.minimum_height
|
||||
Button:
|
||||
size_hint_y: None
|
||||
height: '40sp'
|
||||
text: 'OK, terminate'
|
||||
on_press: root.dismiss()
|
||||
Loading…
Add table
Add a link
Reference in a new issue