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

🚧 remove new keyword to get inline with dart 2 code standard.

This commit is contained in:
Nishant Srivastava
2019-07-23 03:42:56 +02:00
parent e8b433c00d
commit 6d56bfc5d4
45 changed files with 438 additions and 438 deletions

View File

@@ -4,16 +4,16 @@ import 'package:using_bottom_nav_bar/tabs/second.dart';
import 'package:using_bottom_nav_bar/tabs/third.dart';
void main() {
runApp(new MaterialApp(
runApp(MaterialApp(
// Title
title: "Using Tabs",
// Home
home: new MyHome()));
home: MyHome()));
}
class MyHome extends StatefulWidget {
@override
MyHomeState createState() => new MyHomeState();
MyHomeState createState() => MyHomeState();
}
// SingleTickerProviderStateMixin is used for animation
@@ -26,7 +26,7 @@ class MyHomeState extends State<MyHome> with SingleTickerProviderStateMixin {
super.initState();
// Initialize the Tab Controller
controller = new TabController(length: 3, vsync: this);
controller = TabController(length: 3, vsync: this);
}
@override
@@ -38,37 +38,37 @@ class MyHomeState extends State<MyHome> with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
return new Scaffold(
return Scaffold(
// Appbar
appBar: new AppBar(
appBar: AppBar(
// Title
title: new Text("Using Bottom Navigation Bar"),
title: Text("Using Bottom Navigation Bar"),
// Set the background color of the App Bar
backgroundColor: Colors.blue,
),
// Set the TabBar view as the body of the Scaffold
body: new TabBarView(
body: TabBarView(
// Add tabs as widgets
children: <Widget>[new FirstTab(), new SecondTab(), new ThirdTab()],
children: <Widget>[FirstTab(), SecondTab(), ThirdTab()],
// set the controller
controller: controller,
),
// Set the bottom navigation bar
bottomNavigationBar: new Material(
bottomNavigationBar: Material(
// set the color of the bottom navigation bar
color: Colors.blue,
// set the tab bar as the child of bottom navigation bar
child: new TabBar(
child: TabBar(
tabs: <Tab>[
new Tab(
Tab(
// set icon to the tab
icon: new Icon(Icons.favorite),
icon: Icon(Icons.favorite),
),
new Tab(
icon: new Icon(Icons.adb),
Tab(
icon: Icon(Icons.adb),
),
new Tab(
icon: new Icon(Icons.airport_shuttle),
Tab(
icon: Icon(Icons.airport_shuttle),
),
],
// setup the controller

View File

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

View File

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

View File

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