vertical_scroll_tabbar 0.0.5 vertical_scroll_tabbar: ^0.0.5 copied to clipboard
A vertical scroll tab bar, which provides automated tab bar index changing when content is scrolled.
Features #
Vertical scroll view with tabbar.
Automatically change tabbar index when scroll view is scrolled.
And also, when tap tabbar item, scroll view will be scrolled to the top of the tabbar index.
Usage #
VerticalScrollTabbar(
tabs: [...],
children: [...],
);
Parameters #
Parameter | Type | Description | Required | Default |
---|---|---|---|---|
tabs | List | Tabbar items | false | |
children | List | Scroll view items | false | |
isScrollable | bool | Whether the tab bar is scrollable. | false | false |
indicatorColor | Color | The color of selected tab's underline. | false | |
onTabChanged | Function(int index) | Called when tab index is changed | false |
Requirements #
tabs
andchildren
must have same length.- children must have
GlobalKey
as key Property