extended_tabs 0.2.0 extended_tabs: ^0.2.0 copied to clipboard
extended tab bar view include color tabIndicator,linkWithAncestor,page cache extent
import 'package:flutter/material.dart';
import 'package:extended_tabs/extended_tabs.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Extended Tabs Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Extended Tabs Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
TabController tabController;
TabController tabController1;
TabController tabController2;
@override
void initState() {
tabController = TabController(length: 2, vsync: this);
tabController1 = TabController(length: 3, vsync: this);
tabController2 = TabController(length: 4, vsync: this);
// TODO: implement initState
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Column(
children: <Widget>[
TabBar(
indicator: ColorTabIndicator(Colors.blue),
labelColor: Colors.black,
tabs: [
Tab(text: "Tab0"),
Tab(text: "Tab1"),
],
controller: tabController,
),
Expanded(
child: ExtendedTabBarView(
children: <Widget>[
Column(
children: <Widget>[
TabBar(
indicator: ColorTabIndicator(Colors.red),
labelColor: Colors.black,
tabs: [
Tab(text: "Tab00"),
Tab(text: "Tab01"),
Tab(text: "Tab02"),
],
controller: tabController1,
),
Expanded(
child: ExtendedTabBarView(
children: <Widget>[
Column(
children: <Widget>[
TabBar(
indicator: ColorTabIndicator(Colors.green),
labelColor: Colors.black,
tabs: [
Tab(text: "Tab000"),
Tab(text: "Tab001"),
Tab(text: "Tab002"),
Tab(text: "Tab003"),
],
controller: tabController2,
),
Expanded(
child: ExtendedTabBarView(
children: <Widget>[
List("Tab000"),
List("Tab001"),
List("Tab002"),
List("Tab003"),
],
controller: tabController2,
///if linkedParentTabBarView is true and current tabbarview over scroll,
///it will check whether ancestor tabbarView can be scroll
///then scroll ancestor tabbarView
linkWithAncestor: true,
/// cache page count
/// default is 0.
/// if cacheExtent is 1, it has two pages in cache
/// null is infinity, it will cache all pages
cacheExtent: 1,
),
)
],
),
List("Tab01"),
List("Tab02"),
],
controller: tabController1,
),
)
],
),
List("Tab1")
],
controller: tabController,
),
)
],
),
);
}
}
class List extends StatelessWidget {
final String tabKey;
List(this.tabKey);
@override
Widget build(BuildContext context) {
return ListView.builder(
itemBuilder: (c, i) {
return Container(
//decoration: BoxDecoration(border: Border.all(color: Colors.orange,width: 1.0)),
alignment: Alignment.center,
height: 60.0,
child: Text("$tabKey : List$i"),
);
},
itemCount: 100);
}
}