flutter_vertical_tab_bar 0.0.1
flutter_vertical_tab_bar: ^0.0.1 copied to clipboard
A Flutter package for vertical tab bars.
Flutter Vertical TabBar #
A vertical TabBar package for flutter framework.
Flutter Vertical TabBar is a Flutter package that allows you to effortlessly add vertical tab bars to your Flutter applications. It enhances user experience and provides UI flexibility with easy integration and customizable design.
Screenshot #
Features #
- 🌟 Easy Integration: Add vertical tab bars to your Flutter apps with minimal setup.
- 🎨 Customizable Design: Customize the appearance and behavior to fit your app's theme.
- ⚡ High Performance: Optimized for performance to ensure smooth user interactions.
Installation #
Add the following line to your pubspec.yaml
file under dependencies:
dependencies:
flutter_vertical_tab_bar: ^0.0.1
copied to clipboard
EXAMPLE #
...
VerticalTabs(
tabsWidth: 100,
selectedTabTextStyle: TextStyle(color: Colors.red),
unSelectedTabTextStyle: TextStyle(color: Colors.grey),
tabs: <String>[
Text("Monday"),
Text("Tuesday"),
Text("Wednesday"),
Text("Thursday"),
Text("Friday"),
Text("Saturday"),
],
contents: <Widget>[
Text("Monday"),
Text("Tuesday"),
Text("Wednesday"),
Text("Thursday"),
Text("Friday"),
Text("Saturday"),
],
),
copied to clipboard