msafarulla
09/27/2020, 1:31 PMbottom = hbox {
label(controller.statusToView) {
padding = insets(horizontal = 3)
}
//button { text = "stop" }
progressbar(status.progress).apply {
visibleWhen { status.running }}
}
Ahmed Mourad
09/27/2020, 1:42 PMhboxConstraints {
hgrow = Priority.SOMETIMES
}
msafarulla
09/27/2020, 1:48 PMmsafarulla
09/27/2020, 2:29 PMbottom = hbox {
label(controller.statusToView) {
alignment = Pos.CENTER_LEFT
padding = insets(horizontal = 3, vertical = 0)
}
//button { text = "stop" }
progressbar(status.progress) {
alignment = Pos.CENTER_RIGHT
padding = insets(horizontal = 3, vertical = 0)
visibleWhen { status.running }}
}
Carlton Whitehead
09/27/2020, 3:02 PMmsafarulla
09/27/2020, 3:46 PMbottom = hbox {
label(controller.statusToView) {
padding = insets(horizontal = 3, vertical = 0)
}
pane{
hgrow = Priority.SOMETIMES
}
progressbar(status.progress) {
padding = insets(horizontal = 3, vertical = 0)
visibleWhen { status.running }}
}
Marshall
09/29/2020, 1:49 PM