I'm still having a bit of trouble with the layouting in Flutter.
Right now I want to have the available space shared between 3 widgets, in a quadrant layout.
The width is evenly shared (this works fine via 2 Expanded
widgets in a Row), but now I also want the height to adjust automatically so widget3.height == widget1.height + widget2.height
.
If the content of widget3
is larger, I want widget1
and widget2
to adjust their height and vice versa.
Is this even possible in Flutter?