TAlignedRow constructor
TAlignedRow({
- Key? key,
- List<
Widget> left = const [], - List<
Widget> right = const [], - double spacing = 8.0,
- double rowSpacing = 12.0,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- double? expandBelowWidth = kMobileBreakpoint,
Implementation
TAlignedRow({
super.key,
List<Widget> left = const [],
List<Widget> right = const [],
this.spacing = 8.0,
this.rowSpacing = 12.0,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.mainAxisAlignment = MainAxisAlignment.start,
this.expandBelowWidth = kMobileBreakpoint,
}) : super(children: [
...left.map((w) => _Side(isRight: false, child: w)),
...right.map((w) => _Side(isRight: true, child: w)),
]);