26 lines
571 B
Plaintext
26 lines
571 B
Plaintext
import "nbcl/components/datetime_widg.nbcl" as datetime_widg { * }
|
|
import "nbcl/panel/panel_section.nbcl" as datetime_widg { * }
|
|
|
|
component EwwiiPanel () {
|
|
Box {
|
|
orinetation = "horizontal"
|
|
halign = "center"
|
|
class = "ewwii_panel"
|
|
height = config.panel_height
|
|
width = config.panel_width
|
|
space_evenly = true
|
|
|
|
PanelSection "section_left" {
|
|
section_side = "left"
|
|
widg_align = "start"
|
|
}
|
|
PanelSection "section_left" {
|
|
section_side = "center"
|
|
widg_align = "center"
|
|
}
|
|
PanelSection "section_left" {
|
|
section_side = "right"
|
|
widg_align = "end"
|
|
}
|
|
}
|
|
} |