flutter_colorful_tab 0.1.1 copy "flutter_colorful_tab: ^0.1.1" to clipboard
flutter_colorful_tab: ^0.1.1 copied to clipboard

A colorful TabBar for Flutter where each tab has a color (inspired by SmartNews app).

Flutter Colorful TabBar #

A colorful TabBar for Flutter where each tab has a color (inspired by SmartNews app).

demo

Getting Started #

Add this to your package's pubspec.yaml file:

  dependencies:
    flutter_colorful_tab: {current_version}

Import the library in your file:

import 'package:flutter_colorful_tab/flutter_colorful_tab.dart';

Use the flutter_colorful_tab like this:

ColorfulTabBar(
  tabs: [
    TabItem(color: Colors.red, title: Text('Home')),
    TabItem(color: Colors.green, title: Text('Favorite')),
    TabItem(color: Colors.orange, title: Text('Search')),
    TabItem(color: Colors.green, title: Text('Settings')),
  ],
  controller: _tabController,
)

// all available parameters of TabItem
  TabItem(
    color: Colors.orange,
    unselectedColor: Colors.orange.shade600,
    title: const Text('Search'),
    labelColor: Colors.black,
    unselectedLabelColor: Colors.yellow,
    labelStyle: const TextStyle(fontWeight: FontWeight.bold),
    unselectedLabelStyle: const TextStyle(fontWeight: FontWeight.normal),
  ),
30
likes
140
pub points
84%
popularity

Publisher

unverified uploader

A colorful TabBar for Flutter where each tab has a color (inspired by SmartNews app).

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_colorful_tab