All Projects → vipulasri → Flutter_bubble_tab_indicator

vipulasri / Flutter_bubble_tab_indicator

Licence: mit
A Flutter library to add bubble tab indicator to TabBar

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter bubble tab indicator

Foldingtabbar.android
[DEPRECATED] Folding Tabbar menu for Android. This is a menu library.You can easily add a nice animated tab menu to your app.
Stars: ✭ 486 (+226.17%)
Mutual labels:  tabbar
Rn Collapsing Tab Bar
Collapsing header with tabs for react native
Stars: ✭ 71 (-52.35%)
Mutual labels:  tabbar
Hhtabbarview
A lightweight customized tabbar view. 📌
Stars: ✭ 125 (-16.11%)
Mutual labels:  tabbar
Cyltabbarcontroller
[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】
Stars: ✭ 6,605 (+4332.89%)
Mutual labels:  tabbar
Tap water
【声明:未发布前,勿使用,勿star,预计2020年11月底发布】Flutter tab_bar组件,支持中间带加号按钮的TabBar,支持Lottie动画。iTeaTime(技术清谈)团队出品。Highly customizable tabBar and tabBarController for Flutter
Stars: ✭ 52 (-65.1%)
Mutual labels:  tabbar
Dgfloldabletabbarcontrol
An elegant foldable tabbar control.
Stars: ✭ 91 (-38.93%)
Mutual labels:  tabbar
React Native Tab View
A cross-platform Tab View component for React Native
Stars: ✭ 4,742 (+3082.55%)
Mutual labels:  tabbar
Bekcurvetabbar
Full Customizable Tabbar with IBInspectables
Stars: ✭ 144 (-3.36%)
Mutual labels:  tabbar
Weapp Component Tabbar
微信小程序自定义组件:带未读数目的tab按钮
Stars: ✭ 56 (-62.42%)
Mutual labels:  tabbar
Swsegmentedcontrol
A Android-like tab bar, drop-in replacement for UISegmentedControl.
Stars: ✭ 115 (-22.82%)
Mutual labels:  tabbar
React Native Animated Tabbar
A 60FPS animated tab bar with a variety of cool animation presets 😎
Stars: ✭ 890 (+497.32%)
Mutual labels:  tabbar
Superbadges
Emoji Tab Bar button badges ✨
Stars: ✭ 47 (-68.46%)
Mutual labels:  tabbar
Sscustombottomnavigation
Animated tabbar with native control
Stars: ✭ 98 (-34.23%)
Mutual labels:  tabbar
Transitionabletab
TransitionableTab makes it easy to animate when switching between tab.
Stars: ✭ 740 (+396.64%)
Mutual labels:  tabbar
Tabtoolbar
A small library for creating tabbed toolbars
Stars: ✭ 129 (-13.42%)
Mutual labels:  tabbar
Estabbarcontroller
ESTabBarController is developed and maintained by Vincent Li. If you have any questions or issues in using ESTabBarController, welcome to issue. If you want to contribute to ESTabBarController, Please submit Pull Request, I will deal with it as soon as possible.
Stars: ✭ 4,649 (+3020.13%)
Mutual labels:  tabbar
Fwsidemenu
侧滑控件:支持左、右滑动的侧滑菜单,可配置单侧滑动,同时可配置菜单宽度等,更多配置请参考”可设置参数“。参考了QQ用户体验:支持边缘侧滑,解决手势冲突问题(边缘范围可设置)。提供OC使用Demo。
Stars: ✭ 90 (-39.6%)
Mutual labels:  tabbar
Minitabbar
📱 A minimal tab bar alternative
Stars: ✭ 146 (-2.01%)
Mutual labels:  tabbar
Poliopager
A flexible TabBarController with search tab like SNKRS.
Stars: ✭ 133 (-10.74%)
Mutual labels:  tabbar
Tabbar
🔥空祖家的导航栏工具
Stars: ✭ 100 (-32.89%)
Mutual labels:  tabbar

Bubble Tab Indicator

pub package

A Flutter library to add bubble tab indicator to TabBar.

banner

Getting Started

Add package from github by adding the following to your pubspec.yaml, pub publication is added later.

  dependencies:
    bubble_tab_indicator: "^0.1.5"

Import the library in your file:

import 'package:bubble_tab_indicator/bubble_tab_indicator.dart';

Use the BubbleTabIndicator like this:

new TabBar(
  indicatorSize: TabBarIndicatorSize.tab,
  indicator: BubbleTabIndicator(
            indicatorHeight: 25.0,
            indicatorColor: Colors.blueAccent,
            tabBarIndicatorSize: TabBarIndicatorSize.tab,
            // Other flags
            // indicatorRadius: 1,
            // insets: EdgeInsets.all(1),
            // padding: EdgeInsets.all(10)
          ),
)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].