You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|---------------------------------|
| first | 0 |
| second | 1 |
|---------------------------------|
(2, 3, 4 are invisible but may be scrolled to)
I want the window to be of the following:
non-resizable, but with sensible default height and width, OR
resizable from the get go
it may be resized horizontally, but it shrinks to the minimum possible height, which depends on amount of selectable_values I use. I've tried adding ui.allocate_space(ui.available_space()) inside the first lambda of ui.vertical(), but oddly enough it makes the window bloat horizontally instead of vertically.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
suppose I have the following layout:
visualized:
I want the window to be of the following:
it may be resized horizontally, but it shrinks to the minimum possible height, which depends on amount of
selectable_value
s I use. I've tried addingui.allocate_space(ui.available_space())
inside the first lambda ofui.vertical()
, but oddly enough it makes the window bloat horizontally instead of vertically.what are my options in this case?
Beta Was this translation helpful? Give feedback.
All reactions