1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 13:09:03 +00:00
Files
flutter-examples/using_tabs/lib/tabs/first.dart
2018-01-19 04:49:22 +05:30

24 lines
533 B
Dart

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