1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/using_bottom_nav_bar/lib/tabs/third.dart
2019-07-23 03:42:56 +02:00

30 lines
710 B
Dart

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