cupertino_tabbar 1.0.0 cupertino_tabbar: ^1.0.0 copied to clipboard
A highly customisable and simple widget for having iOS 13 style tab bars.
cupertino_tabbar #
A highly customisable and simple widget for having iOS 13 style tab bars.
It is highly recommended to read the documentation and run the example project on a real device to fully understand and inspect the full range of capabilities.
Media | Description | Installation | How-to-Use
Media #
Watch on Youtube:
Description #
This is a highly customisable and simple widget for having iOS 13 style tab bars.
How-to-Use #
Simply create a CupertinoTabBar as shown in the example:
CupertinoTabBar(
Colors.black //_backgroundColor
Colors.white //_foregroundColor
[...], //_widgets
cupertinoTabBarValueGetter, //_valueGetter
(int index) { //_onTap
setState(() {
cupertinoTabBarValue = index;
});
},
{Key key,
useSeparators : false,
horizontalPadding : 10.0,
verticalPadding : 10.0,
borderRadius : const BorderRadius.all(const Radius.circular(10.0)),
duration : const Duration(milliseconds: 250)})
)
int cupertinoTabBarValue = 0;
int cupertinoTabBarValueGetter() => cupertinoTabBarIValue;
Further Explanations:
For a complete set of descriptions for all parameters and methods, see the documentation.
Notes #
Any help, suggestion or criticism is appreciated!
Cheers.