tab_indicator_styler 2.0.0 tab_indicator_styler: ^2.0.0 copied to clipboard
Add beautiful and trending tab indicators directly to your default Flutter TabBar
import 'package:flutter/material.dart';
import 'package:tab_indicator_styler/tab_indicator_styler.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: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: DefaultTabController(
length: 3,
initialIndex: 0,
child: Center(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("Material Indicator: position bottom"),
),
Material(
child: TabBar(
indicatorColor: Colors.green,
tabs: [
Tab(
text: "Home",
),
Tab(
text: "Work",
),
Tab(
text: "Play",
),
],
labelColor: Colors.black,
indicator: MaterialIndicator(
height: 5,
topLeftRadius: 8,
topRightRadius: 8,
horizontalPadding: 50,
tabPosition: TabPosition.bottom,
),
),
),
SizedBox(
height: 16,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("Dot Indicator"),
),
Material(
child: TabBar(
indicatorColor: Colors.green,
tabs: [
Tab(
text: "Home",
),
Tab(
text: "Work",
),
Tab(
text: "Play",
),
],
labelColor: Colors.black,
indicator: DotIndicator(
color: Colors.black,
distanceFromCenter: 16,
radius: 3,
paintingStyle: PaintingStyle.fill,
),
),
),
SizedBox(
height: 16,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("Material Indicator: position top"),
),
Material(
child: TabBar(
indicatorColor: Colors.green,
tabs: [
Tab(
text: "Home",
),
Tab(
text: "Work",
),
Tab(
text: "Play",
),
],
labelColor: Colors.black,
indicatorSize: TabBarIndicatorSize.label,
indicator: MaterialIndicator(
height: 5,
topLeftRadius: 0,
topRightRadius: 0,
bottomLeftRadius: 5,
bottomRightRadius: 5,
tabPosition: TabPosition.top,
),
),
),
SizedBox(
height: 16,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("RectangularIndicator Indicator: fill"),
),
Material(
child: TabBar(
indicatorColor: Colors.green,
tabs: [
Tab(
text: "Home",
),
Tab(
text: "Work",
),
Tab(
text: "Play",
),
],
labelColor: Colors.white,
unselectedLabelColor: Colors.black,
indicator: RectangularIndicator(
bottomLeftRadius: 100,
bottomRightRadius: 100,
topLeftRadius: 100,
topRightRadius: 100,
),
),
),
SizedBox(
height: 16,
),
Padding(
padding: const EdgeInsets.all(8.0),
child: Text("RectangularIndicator Indicator: stroke"),
),
TabBar(
indicatorColor: Colors.green,
tabs: [
Tab(
text: "Home",
),
Tab(
text: "Work",
),
Tab(
text: "Play",
),
],
labelColor: Colors.black,
indicator: RectangularIndicator(
bottomLeftRadius: 100,
bottomRightRadius: 100,
topLeftRadius: 100,
topRightRadius: 100,
paintingStyle: PaintingStyle.stroke,
),
),
],
),
),
),
),
);
}
}