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: [ Icon( Icons.adb, size: 160.0, color: Colors.white, ), Text( "Second Tab", style: TextStyle(color: Colors.white), ) ], ), ), ), ); } }