chrome_tab_bar 1.0.3 copy "chrome_tab_bar: ^1.0.3" to clipboard
chrome_tab_bar: ^1.0.3 copied to clipboard

Chrome Tab Bar with custom corner radius, background color, tab selected color, tab text, and many more.

Chrome Tab Bar #

Chrome Tab Bar with custom corner radius, background color, tab selected color, tab text, and many more.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  chrome_tab_bar: ^1.0.3
  1. Import the package and use it in your Flutter App.
import 'package:chrome_tab_bar/fancy_containers.dart';
class HomePage extends StatefulWidget {
  const HomePage({Key? key}) : super(key: key);
  @override
  State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return ChromeTabBar(
      tabSelectedColor: Colors.white,
      backgroundColor: Colors.blue,
      tabsList: const [
        SizedBox(),
        SizedBox(),
        SizedBox(),
        SizedBox(),
        SizedBox(),
      ],
      tabText:const [
        "Tab One",
        "Tab Two",
        "Tab Three",
        "Tab Four",
        "Tab Five",
      ],

    );
  }
}
5
likes
140
pub points
26%
popularity

Publisher

verified publisherthetechmarvel.blogspot.com

Chrome Tab Bar with custom corner radius, background color, tab selected color, tab text, and many more.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on chrome_tab_bar