18 lines
480 B
Plaintext
18 lines
480 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 = false
|
|
spacing = 0
|
|
|
|
panel_section.panel_section("left", "start")
|
|
panel_section.panel_section("center", "center")
|
|
panel_section.panel_section("right", "end")
|
|
}
|
|
} |