flutter row 横向平分为2个Container设置为正方形
Row( children: [ Expanded( child: AspectRatio( aspectRatio: 1, child: Container( color: Colors.blue, child: Center( child: Text('Container 1'), ), ), ), ), Expanded( child: AspectRatio( aspectRatio: 1, child: Container( color: Colors.green, child: Center( child: Text('Container 2'), ), ), ), ), ], )