Files
2017-08-25 23:52:16 -07:00

23 lines
499 B
Dart

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