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