1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00

fix: issue #3

This commit is contained in:
Nishant Srivastava
2018-05-29 00:36:48 +02:00
parent a4fba765f0
commit c98848ffb6

View File

@@ -5,7 +5,7 @@ import 'package:using_tabs/tabs/third.dart';
void main() {
runApp(new MaterialApp(
// Title
// Title
title: "Using Tabs",
// Home
home: new MyHome()));
@@ -29,7 +29,7 @@ class MyHomeState extends State<MyHome> with SingleTickerProviderStateMixin {
super.initState();
// Initialize the Tab Controller
controller = new TabController(length: 2, vsync: this);
controller = new TabController(length: 3, vsync: this);
}
@override
@@ -73,9 +73,9 @@ class MyHomeState extends State<MyHome> with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
return new Scaffold(
// Appbar
// Appbar
appBar: new AppBar(
// Title
// Title
title: new Text("Using Tabs"),
// Set the background color of the App Bar
backgroundColor: Colors.blue,