Flutter any tab.
dependencies:
any_tab: ^1.0.0
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,
),
],
),
),