-
I have a container with a vbox and another with a big label. On desktop it's displayed correctly. On mobile the result panel is on the first panel, merged on the first one. This is the last code from the function : |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think you might want to change the HBox to something different. It will always compress items down to their horizontal MinSize. A good option might be to use the |
Beta Was this translation helpful? Give feedback.
-
To more literally answer the question use |
Beta Was this translation helpful? Give feedback.
I think you might want to change the HBox to something different. It will always compress items down to their horizontal MinSize.
A good option might be to use the
container.NewAdaptiveGrid(2, ...)
. This should make the result panel be on the right on desktop and then pop down below when on mobile.