Files
2019-07-23 03:42:56 +02:00

30 lines
699 B
Dart

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