anisi_controls 0.0.3 copy "anisi_controls: ^0.0.3" to clipboard
anisi_controls: ^0.0.3 copied to clipboard

discontinued
outdated

A couple of my own custom made controls you may find useful to your flutter project like Anisi Bottom Navigation (Fancy Bottom Navigation)

Anisi Controls #

Fancy Gif

Getting Started #

dependencies:
  ...
  anisi_controls: ^0.0.3

Anisi Bottom Navigation #

Basic Usage #

Adding the widget

bottomNavigationBar: AnisiBottomNavigation(
    barHeight: 55,
    arcHeight: 50,
    arcWidth: 75,
    circleHeight: 50,
    initialSelection: 1,
    tabs: [
        TabData(iconData: Icons.home, title: "Home"),
        TabData(iconData: Icons.search, title: "Search"),
        TabData(iconData: Icons.shopping_cart, title: "Basket")
    ],
    onTabChangedListener: (position) {
        setState(() {
        _currentIndex = position;
        });
    },
    ),

TabData #

iconData -> Icon to be used for the tab
title -> String to be used for the tab
onClick -> Optional function to be used when the circle itself is clicked, on an active tab

Attributes #

required #

tabs -> List of TabData objects
onTabChangedListener -> Function to handle a tap on a tab, receives int position

optional #

initialSelection -> Defaults to 0
circleColor -> Defaults to null, derives from Theme
activeIconColor -> Defaults to null, derives from Theme
inactiveIconColor -> Defaults to null, derives from Theme
taxtColor -> Defaults to null, derives from Theme
barBackgroundColor -> Defaults to null, derives from Theme
key -> Defaults to null

Theming #

The bar will attempt to use your current theme out of the box, however you may want to theme it. Here are the attributes:

Programmatic Selection #

To select a tab programmatically you will need to assign a GlobalKey to the widget. When you want to change tabs you will need to access the State using this key, and then call setPage(position).
See example project, main.dart, line 75 for an example.

Showcase #

Using this package in a live app, let me know and I'll add you app here.

Inspiration #

This package was inspired by a design on dribbble by Manoj Rajput:
https://dribbble.com/shots/5419022-Tab

Contributing #

Contributions are welcome, please submit a PR :)

1
likes
0
pub points
7%
popularity

Publisher

unverified uploader

A couple of my own custom made controls you may find useful to your flutter project like Anisi Bottom Navigation (Fancy Bottom Navigation)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, vector_math

More

Packages that depend on anisi_controls