any_tab
Flutter any tab.
Getting Started
Install
dependencies:
any_tab: ^0.0.2
Use
See example for details
AnyTabController anyTabController;
@override
void initState() {
super.initState();
anyTabController = AnyTabController(vsync: this, length: 3);
}
AnyTab(
anyTabController: anyTabController,
anyTabDelegate: CircularAnyTabDelegate(
tabs: [
for (AnyTabModel model in pages)
AnyTabItem(
model: model,
),
],
),
),