fw_tab_bar 0.0.2 copy "fw_tab_bar: ^0.0.2" to clipboard
fw_tab_bar: ^0.0.2 copied to clipboard

A customizable tab bar widget with slide animation.

tab_bar_widget #

A customizable tab bar widget with animation made by Umang Pipaliya.

Features #

  • Animated tab indicator
  • Customizable styles and decorations
  • Easy integration with GetX state management

Screenshots #

Tab Bar Example

Demo #

Tab Bar Animation

Installation #

Add the package to your pubspec.yaml:

dependencies:
  tab_bar_widget: ^0.0.1

Example #

import 'package:flutter/material.dart';
import 'package:tab_bar_widget/tab_bar_widget.dart';

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Tab Bar Example')),
      body: Center(
        child: TabBarWidget(
          firstTab: 'Tab 1',
          secondTab: 'Tab 2',
          onTabChanged: (int index) {
            print('Selected tab: $index');
          },
        ),
      ),
    );
  }
}

License #

This project is licensed under the MIT License - see the LICENSE file for details.

2
likes
140
pub points
66%
popularity

Publisher

verified publisherflutterwala.com

A customizable tab bar widget with slide animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, get

More

Packages that depend on fw_tab_bar