Roman
11/09/2018, 1:21 PMtop {
hbox {
vbox(alignment = Pos.TOP_LEFT) {
text("Hello")
text("World")
}
hbox(3, alignment = Pos.TOP_RIGHT) {
button("Update") {
action {
homeController.updateCurrentDevices()
}
}
button("Logs") {
action {
logView.openModal(stageStyle = StageStyle.DECORATED)
}
}
button("Exit")
}
}
}
Torbilicious
11/09/2018, 1:28 PMhbox {
label("label")
region { hgrow = Priority.ALWAYS }
button("button")
}
Torbilicious
11/09/2018, 1:28 PMSpike Baylor
11/09/2018, 1:35 PMRoman
11/09/2018, 1:35 PM