Implement Setting Dialog - Work in Progress

This commit is contained in:
Jas Singh
2024-07-21 16:20:34 -07:00
parent ab721edbd2
commit 28fbb8e3b4
21 changed files with 585 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
export const Label = (name, sub = "") => {
return Widget.Box({
vertical: true,
hpack: "start",
children: [
Widget.Label({
hpack: "start",
vpack: "center",
class_name: "options-label",
label: name
}),
Widget.Label({
hpack: "start",
vpack: "center",
class_name: "options-sublabel",
label: sub
}),
]
})
}