layout我正在尝试这个布局。橙子和红色是固定区域。白色可以是列表视图或SingleChildScrollView。这是抽屉...因此,白色区域的高度是灵活的。橙子和红色需要固定。我尝试使用列与mainAxisAlignment.spaceEvenly,但没有工作。谢谢你,谢谢
x3naxklr1#
Column( children: [ Container(color: Colors.orange, height: orangeHeight), Expanded( child: Container( color: Colors.white, child: ListView(), ), ), Container(color: Colors.red, height: redHeight), ], )
字符串
1条答案
按热度按时间x3naxklr1#
字符串