Files
2017-08-26 00:34:29 -07:00

30 lines
724 B
Dart

import 'package:flutter/material.dart';
class Second extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
backgroundColor: Colors.green,
body: new Container(
child: new Center(
child: new Column(
// center the children
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Icon(
Icons.adb,
size: 160.0,
color: Colors.white,
),
new Text(
"Second Tab",
style: new TextStyle(color: Colors.white),
)
],
),
),
),
);
}
}