smart_tab_view 0.0.1
smart_tab_view: ^0.0.1 copied to clipboard
A scroll-aware tab view for Flutter with customizable tab widgets and direction.
SmartTabView #
A smart, scroll-aware tab view with customizable tab widgets and support for horizontal and vertical layouts.
Features #
- ✅ Tab auto-selection on scroll
- ✅ Vertical or horizontal tab placement
- ✅ Fully customizable tab and content widgets
Example #
SmartTabView(
tabPosition: TabPosition.left,
tabs: [
Text("Tab 1"),
Text("Tab 2"),
],
sections: [
YourSectionWidget1(),
YourSectionWidget2(),
],
)