1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 04:58:58 +00:00
Files
flutter-examples/using_tabs/lib/ThirdTab.dart
2017-08-25 23:52:16 -07:00

23 lines
508 B
Dart

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