Initial commit
This commit is contained in:
parent
e46f792c49
commit
85cff9dba8
20 changed files with 663 additions and 0 deletions
17
lib/layout/centeredSpaceBetweenRow.dart
Normal file
17
lib/layout/centeredSpaceBetweenRow.dart
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'abstractCenteredRow.dart';
|
||||
|
||||
class CenteredSpacedBetweenRow extends AbstractCenteredRow {
|
||||
CenteredSpacedBetweenRow({
|
||||
Key key,
|
||||
TextDirection textDirection,
|
||||
TextBaseline textBaseline,
|
||||
List<Widget> children: const <Widget>[],
|
||||
}) : super(
|
||||
children: children,
|
||||
key: key,
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
textDirection: textDirection,
|
||||
textBaseline: textBaseline,
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue