mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
benchs
This commit is contained in:
+21
-3
@@ -1,4 +1,22 @@
|
||||
from argenta import App
|
||||
from prompt_toolkit.shortcuts import checkboxlist_dialog
|
||||
from prompt_toolkit.styles import Style
|
||||
|
||||
app = App()
|
||||
app._autocompleter.initial_setup(set())
|
||||
results = checkboxlist_dialog(
|
||||
title="CheckboxList dialog",
|
||||
text="What would you like in your breakfast ?",
|
||||
values=[
|
||||
("eggs", "Eggs"),
|
||||
("bacon", "Bacon"),
|
||||
("croissants", "20 Croissants"),
|
||||
("daily", "The breakfast of the day")
|
||||
],
|
||||
style=Style.from_dict({
|
||||
'dialog': 'bg:#cdbbb3',
|
||||
'button': 'bg:#bf99a4',
|
||||
'checkbox': '#e8612c',
|
||||
'dialog.body': 'bg:#a9cfd0',
|
||||
'dialog shadow': 'bg:#c98982',
|
||||
'frame.label': '#fcaca3',
|
||||
'dialog.body label': '#fd8bb6',
|
||||
})
|
||||
).run()
|
||||
Reference in New Issue
Block a user