TuringTux
03/25/2020, 10:16 AMvGrow = Priority.NEVER
, but that didn't change anything.
class ProgressBarView : View() {
override val root = gridpane {
row {
progressbar {
gridpaneConstraints {
margin = Insets(10.0, 10.0, 5.0, 10.0)
useMaxWidth = true
}
}
}
constraintsForColumn(0).percentWidth = 100.0
}
}
I guess I could explicitly set the minimum height using minHeight = some_number
, but I'd like to avoid having to deal with absolute height values.
Is there any other way?
Thanks in advance 🙂Luigi Scarminio
03/29/2020, 11:15 PMTuringTux
04/06/2020, 9:48 AM