Initial commit

This commit is contained in:
vjrj 2018-06-29 00:57:21 +02:00
parent e46f792c49
commit 85cff9dba8
20 changed files with 663 additions and 0 deletions

View file

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
import 'centeredColumn.dart';
import 'centeredRow.dart';
class CenteredMaxWidget extends CenteredColumn {
CenteredMaxWidget({
Key key,
TextDirection textDirection,
TextBaseline textBaseline,
List<Widget> children: const <Widget>[],
}) : super(
children: <Widget>[new CenteredRow(children: children)],
key: key,
textDirection: textDirection,
textBaseline: textBaseline,
);
}