scrollable_tab_view

Creator: coderz1093

Last updated:

Add to Cart

Description:

scrollable tab view

scrollable_tab_view #





This Flutter package provides a vertical scrollable tab bar widget that allows you to display resizable tabs
Demo #

Installation #
Add this to your pubspec.yaml file:
dependencies:
scrollable_tab_view: <latest-version>
copied to clipboard
Installation #
Import the package in your Dart file:
import 'package:scrollable_tab_view/scrollable_tab_view.dart';

copied to clipboard
Usage #
The ScrollableTab widget allows you to create a tab bar with scrollable tabs without using a controller.
ScrollableTab(
labelColor: Colors.black,
tabs: List.generate(
5,
(index) => Tab(
text: 'index $index',
)),
children: List.generate(
5,
(index) => ListTile(
title: Center(
child: Text(
'tab Number $index',
style: Theme.of(context)
.textTheme
.labelLarge!
.copyWith(fontSize: 20.0 + (30 * index)),
),
),
)),
),

copied to clipboard
The ScrollableTabBar and ScrollableTabViewWithController widgets allow you to create a tab bar with scrollable tabs using a TabController.
Column(
children: [

ScrollableTabBar(
labelColor: Colors.black,
controller: controller,
tabs: List.generate(
5,
(index) => Tab(
text: 'index $index',
)),
),
ScrollableTabViewWithController(
controller: controller,
children: List.generate(
5,
(index) => ListTile(
title: Center(
child: Text(
'tab Number $index',
style: Theme.of(context)
.textTheme
.labelLarge!
.copyWith(fontSize: 20.0 + (30 * index)),
),
),
)),
)
],
),
copied to clipboard
Contributors ✨ #
Thanks goes to these wonderful people (emoji key):






Shyamjith💻 📖 📆
k-kawasaki💻






This project follows the all-contributors specification. Contributions of any kind welcome!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.