1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| Row( mainAxisSize: MainAxisSize.max, textDirection: TextDirection.rtl, verticalDirection: VerticalDirection.up, textBaseline: TextBaseline.alphabetic, mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: <Widget>[ Container( height: 50, width: 80, color: Colors.red, child: Text("Text"), ), Container( height: 60, width: 90, color: Colors.green, ), Container( height: 70, width: 100, color: Colors.blue, ), ], )
|