All Projects → therezacuet → Motion-Tab-Bar

therezacuet / Motion-Tab-Bar

Licence: other
A beautiful animated flutter widget package library. The tab bar will attempt to use your current theme out of the box, however you may want to theme it.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Motion-Tab-Bar

flutter sliding tutorial
User onboarding library with smooth animation of objects and background colors
Stars: ✭ 127 (-46.41%)
Mutual labels:  dart-library, flutter-plugin, flutter-material, flutter-demo, flutter-widget, flutter-ui, flutter-package, dart-package
getwidget-docs
Get Widgets UI library docs.
Stars: ✭ 17 (-92.83%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-material, flutter-widget, flutter-ui, flutter-package
flutter todos
A cross platform todo list app using flutter, sqlite etc. If you read the code, you will understand how to create simple elegant mobile app using Flutter and Dart language.
Stars: ✭ 60 (-74.68%)
Mutual labels:  flutter-apps, flutter-material, flutter-demo, flutter-widget, flutter-ui
swipedetector
A Flutter package to detect up, down, left, right swipes.
Stars: ✭ 34 (-85.65%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-demo, flutter-widget, flutter-package
Best Flutter Ui Templates
completely free for everyone. Its build-in Flutter Dart.
Stars: ✭ 13,448 (+5574.26%)
Mutual labels:  flutter-apps, flutter-material, flutter-demo, flutter-widget, flutter-ui
Flutter-Apps
🌀 This is mainly focus on a complete application for production
Stars: ✭ 18 (-92.41%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-material, flutter-widget, flutter-package
liquid button
Liquify your buttons, web demo at website
Stars: ✭ 18 (-92.41%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-widget, flutter-ui, flutter-package
flutter-app
Full Feature Todos Flutter Mobile app with fireStore integration.
Stars: ✭ 138 (-41.77%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-widget, flutter-ui, flutter-package
Interactive-Add-Button-Layout
Custom Layout with interactive add button to impove your UI and UX .
Stars: ✭ 20 (-91.56%)
Mutual labels:  flutter-material, flutter-demo, flutter-widget, flutter-ui, flutter-package
flutter-UI
将Flutter各种Widget各种API📘都实现一次。喜欢请Star。
Stars: ✭ 67 (-71.73%)
Mutual labels:  flutter-apps, flutter-material, flutter-demo, flutter-widget, flutter-package
survey kit
Flutter library to create beautiful surveys (aligned with ResearchKit on iOS)
Stars: ✭ 68 (-71.31%)
Mutual labels:  flutter-plugin, flutter-widget, flutter-ui, flutter-package
flutter easyloading
✨A clean and lightweight loading/toast widget for Flutter, easy to use without context, support iOS、Android and Web
Stars: ✭ 1,021 (+330.8%)
Mutual labels:  widget, flutter-plugin, flutter-widget, flutter-package
barcode.flutter
barcode generate library for Flutter
Stars: ✭ 58 (-75.53%)
Mutual labels:  dart-library, flutter-plugin, flutter-widget, flutter-package
FlutterLoadingGIFs
Loading indicator GIFs. Material and Cupertino (Android and iOS) loading indicators in assorted sizes. Use as placeholders for loading remote image assets. Demo: https://gallery.codelessly.com/flutterwebsites/loadinggifs/
Stars: ✭ 28 (-88.19%)
Mutual labels:  flutter-plugin, flutter-widget, flutter-ui, flutter-package
Flutter Learning
🔥 👍 🌟 ⭐ ⭐⭐ Flutter all you want.Flutter install,flutter samples,Flutter projects,Flutter plugin,Flutter problems,Dart codes,etc.Flutter安装和配置,Flutter开发遇到的难题,Flutter示例代码和模板,Flutter项目实战,Dart语言学习示例代码。
Stars: ✭ 4,941 (+1984.81%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-widget, flutter-ui
flutter-tunein
Dynamically themed Music Player built with flutter
Stars: ✭ 108 (-54.43%)
Mutual labels:  flutter-plugin, flutter-apps, flutter-material, flutter-ui
Knockdown-Flutter
Enough exercises to knockdown the fear of Flutter in you 👊
Stars: ✭ 33 (-86.08%)
Mutual labels:  flutter-apps, flutter-material, flutter-demo, flutter-widget
Getwidget
Most popular and easy to use open source UI library with 1000+ Widgets to build flutter app.
Stars: ✭ 2,555 (+978.06%)
Mutual labels:  dart-library, flutter-widget, flutter-ui, dart-package
Mathematics
In this application, we can perform some actions like subtraction, addition, multiplication, and division. And by selecting any of these, you will receive a PDF with the answer key to your MCQ or question!
Stars: ✭ 45 (-81.01%)
Mutual labels:  flutter-apps, flutter-material, flutter-demo, flutter-ui
backdrop
Backdrop implementation in flutter.
Stars: ✭ 203 (-14.35%)
Mutual labels:  widget, flutter-material, flutter-demo, flutter-widget

Motion Tab Bar

A beautiful animated widget for your Flutter apps

Preview:

|MotionTabBar Gif |

Getting Started

Add the plugin:

dependencies:
  motion_tab_bar: ^0.1.5

Basic Usage

Adding the widget

   MotionTabController _tabController;
  @override
  void initState() {
    super.initState();
    _tabController = new MotionTabController(initialIndex:1,vsync: this);
  }

  @override
  void dispose() {
    super.dispose();
    _tabController.dispose();
  }

  bottomNavigationBar: MotionTabBar(
          labels: [
            "Account","Home","Dashboard"
          ],
          initialSelectedTab: "Home",
          tabIconColor: Colors.green,
          tabSelectedColor: Colors.red,
          onTabItemSelected: (int value){
               print(value);
               setState(() {
                  _tabController.index = value;
               });
          },
          icons: [
            Icons.account_box,Icons.home,Icons.menu
          ],
          textStyle: TextStyle(color: Colors.red),
  ),

Catch me up on LinkedIn @Rezaul Islam

💙 to Code👨🏽‍💻 Flutter Expert • Dart Kotlin Swift Node Js • Android • Full Stack Mobile Developer

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].