-
Notifications
You must be signed in to change notification settings - Fork 0
/
TabBar_code.dart
36 lines (34 loc) · 974 Bytes
/
TabBar_code.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
import 'package:flutter/material.dart';
void main(){runApp(MyApp());}
class MyApp extends StatelessWidget{
@override
Widget build(BuildContext context) {
/* final _tabs = <Tab>[
Tab(icon: Icon(Icons.mark_chat_unread_rounded), text='Chat'),
Tab(icon: Icon(Icons.email), text='Email'),
Tab(icon: Icon(Icons.add_box_rounded), text='Social'),
];*/
return MaterialApp(
debugShowCheckedModeBanner:false,
title:"ChatApp",
theme:ThemeData(
primaryColor:Colors.white,
),
home:DefaultTabController(
length:3,
child:Scaffold(
appBar: AppBar(
leading:null,
bottom:TabBar(
labelPadding: EdgeInsets.all(0),
tabs:[
Tab(icon: Icon(Icons.mark_chat_unread_rounded),
text:'Chat',
),
Tab(icon: Icon(Icons.email), text:'Email'),
Tab(icon: Icon(Icons.add_box_rounded), text:'Social'),
],
))),)
);
}
}