lit_vertical_tabbar 0.0.1
lit_vertical_tabbar: ^0.0.1 copied to clipboard
Widget that provides automated TabBar changes when ListView is scrolled. (This widget is using ListView to render items for better performance)
lit_vertical_tabbar #
Getting Started #
Widget that Automatically controlls TabBar index on ListView scroll. #
This widget is using ListView to render items for better performance.
Usage #
SliverVerticalTabBar(
backgroundColor: Colors.black87,
padding: const EdgeInsets.symmetric(vertical: 24),
moveTabToLastIndexOnScrollEnd: true,
/// tabs length must be the same length as children length
tabs: [...],
children: [...],
divider: Divider(),
)
Feel free to request for a feature :)