Skip to content

Commit f7361a2

Browse files
committed
add tabbar example
1 parent 821b563 commit f7361a2

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

example/lib/tabbar_example.dart

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
import 'package:flutter/material.dart';
3+
import 'package:animated_interpolation/animated_interpolation.dart';
4+
class TabBarExample extends StatelessWidget {
5+
@override
6+
Widget build(BuildContext context) {
7+
return Scaffold(
8+
body: DefaultTabController(
9+
length: 3,
10+
child: Column(
11+
children: <Widget>[
12+
SmartTabBar(
13+
indicatorBuilder: (context,controller,indicator,indicatorSize,tabKeys,old)=>SweetIndicatorPainter(
14+
controller: controller,
15+
indicatorSize: indicatorSize,
16+
indicator: indicator,
17+
tabKeys: tabKeys,
18+
old: old
19+
),
20+
tabs: <Widget>[
21+
Tab(text: "1",),
22+
Tab(text: "2",),
23+
Tab(text: "3",)
24+
],
25+
),
26+
Expanded(
27+
child: TabBarView(
28+
children: <Widget>[
29+
Container(),
30+
Container(),
31+
Container()
32+
],
33+
),
34+
)
35+
],
36+
),
37+
)
38+
);
39+
}
40+
}

0 commit comments

Comments
 (0)