main.dart
=======
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import 'package:flutter/material.dart'; import 'package:akeepo/bottomnavigation.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter', debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, ), home: BottomNavigation(), ); } } |
bottomnavigation.dart
==================
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | import 'package:flutter/material.dart'; class BottomNavigation extends StatefulWidget { @override _BottomNavigation createState() => new _BottomNavigation(); } // SingleTickerProviderStateMixin is used for animation class _BottomNavigation extends State<BottomNavigation> with SingleTickerProviderStateMixin { int _currentIndex = 0; void onTabTapped(int index) { setState(() { _currentIndex = index; }); } final List<Widget> _children = [ new DialledCallsPage(), new MissedCallsPage(), new ReceivedCallsPage() ]; @override Widget build(BuildContext context) { return new Scaffold( // Appbar appBar: new AppBar( // Title title: new Text("Bottom Navigation"), // Set the background color of the App Bar backgroundColor: Colors.blue, ), body: _children[_currentIndex], // Set the bottom navigation bar bottomNavigationBar: BottomNavigationBar( onTap: onTabTapped, currentIndex: _currentIndex, items: [ BottomNavigationBarItem( icon: new Icon(Icons.call_made), title: new Text('All Calls')), BottomNavigationBarItem( icon: new Icon(Icons.call_missed), title: new Text('Missed')), BottomNavigationBarItem( icon: new Icon(Icons.call_received), title: new Text('Received')), ])); } } List<Contact> missedCallContacts = [ Contact(fullName: 'Pratap Kumar', email: 'pratap@example.com'), Contact(fullName: 'Jagadeesh', email: 'Jagadeesh@example.com'), Contact(fullName: 'Srinivas', email: 'Srinivas@example.com'), Contact(fullName: 'Narendra', email: 'Narendra@example.com'), Contact(fullName: 'Sravan ', email: 'Sravan@example.com'), Contact(fullName: 'Ranganadh', email: 'Ranganadh@example.com'), Contact(fullName: 'Karthik', email: 'Karthik@example.com'), Contact(fullName: 'Saranya', email: 'Saranya@example.com'), Contact(fullName: 'Mahesh', email: 'Mahesh@example.com'), ]; List<Contact> receivedCallContacts = [ Contact(fullName: 'Pratap Kumar', email: 'pratap@example.com'), Contact(fullName: 'Jagadeesh', email: 'Jagadeesh@example.com'), Contact(fullName: 'Srinivas', email: 'Srinivas@example.com'), ]; List<Contact> dialledCallContacts = [ Contact(fullName: 'Ranganadh', email: 'Ranganadh@example.com'), Contact(fullName: 'Karthik', email: 'Karthik@example.com'), Contact(fullName: 'Saranya', email: 'Saranya@example.com'), Contact(fullName: 'Mahesh', email: 'Mahesh@example.com'), ]; class MissedCallsPage extends StatefulWidget { @override State<StatefulWidget> createState() { return new _MissedCallsPage(); } } class _MissedCallsPage extends State<MissedCallsPage> { @override Widget build(BuildContext context) { return Scaffold( body: new Column( children: <Widget>[ new Expanded( child: new ListView.builder( itemCount: missedCallContacts.length, itemBuilder: (context, index) { return ListTile( title: Text( '${missedCallContacts[index].fullName}', ), subtitle: Text('${missedCallContacts[index].email}'), leading: new CircleAvatar( backgroundColor: Colors.blue, child: Text('${missedCallContacts[index].fullName.substring( 0, 1)}')), onTap: () => _onTapItem(context, missedCallContacts[index]), ); }, ), ), ], )); } void _onTapItem(BuildContext context, Contact post) { Scaffold.of(context).showSnackBar( new SnackBar(content: new Text("Tap on " + ' - ' + post.fullName))); } } class ReceivedCallsPage extends StatefulWidget { @override State<StatefulWidget> createState() { return new _ReceivedCallsPage(); } } class _ReceivedCallsPage extends State<ReceivedCallsPage> { @override Widget build(BuildContext context) { return Scaffold( body: new Column( children: <Widget>[ new Expanded( child: new ListView.builder( itemCount: receivedCallContacts.length, itemBuilder: (context, index) { return ListTile( title: Text( '${receivedCallContacts[index].fullName}', ), subtitle: Text('${receivedCallContacts[index].email}'), leading: new CircleAvatar( backgroundColor: Colors.blue, child: Text('${receivedCallContacts[index].fullName.substring( 0, 1)}')), onTap: () => _onTapItem(context, receivedCallContacts[index]), ); }, ), ), ], )); } void _onTapItem(BuildContext context, Contact post) { Scaffold.of(context).showSnackBar( new SnackBar(content: new Text("Tap on " + ' - ' + post.fullName))); } } class DialledCallsPage extends StatefulWidget { @override State<StatefulWidget> createState() { return new _DialledCallsPage(); } } class _DialledCallsPage extends State<DialledCallsPage> { @override Widget build(BuildContext context) { return Scaffold( body: new Column( children: <Widget>[ new Expanded( child: new ListView.builder( itemCount: dialledCallContacts.length, itemBuilder: (context, index) { return ListTile( title: Text( '${dialledCallContacts[index].fullName}', ), subtitle: Text('${dialledCallContacts[index].email}'), leading: new CircleAvatar( backgroundColor: Colors.blue, child: Text('${dialledCallContacts[index].fullName.substring( 0, 1)}')), onTap: () => _onTapItem(context, dialledCallContacts[index]), ); }, ), ), ], )); } void _onTapItem(BuildContext context, Contact post) { Scaffold.of(context).showSnackBar( new SnackBar(content: new Text("Tap on " + ' - ' + post.fullName))); } } class Contact { final String fullName; final String email; const Contact({this.fullName, this.email}); } |
No comments:
Post a Comment