orangy
07/15/2022, 8:28 AMjim
07/15/2022, 9:03 AMBoxWithConstraints
which allows you to adjust your widget based on the available space.remember
for anything important)orangy
07/15/2022, 9:08 AMjim
07/15/2022, 9:17 AMif(myBoolean) Row { MyWidget(data) } else Column { MyWidget(data) }
Interact with the widget (enter some text, click some buttons, interact with your widget, whatever your widget does). Anything that changes the state of your widget. Then flip the boolean.
If anything changes when you flip the boolean, you've got a problem.orangy
07/15/2022, 11:38 AM