blur_bottom_bar 1.0.1 copy "blur_bottom_bar: ^1.0.1" to clipboard
blur_bottom_bar: ^1.0.1 copied to clipboard

outdated

Flutter blur bottom bar is a recreation of the ios tab view with material desifn for android and ios

blur_bottom_bar #

Flutter blur bottom bar

This is a recreation of the ios tab view with material desifn for android and ios

| Preview || Preview | |---------||---------| |BlurBottomBar Gif|BlurBottomBar Gif|

Getting Started #

Add the dependency in pubspec.yaml:

dependencies:
  ...
  blur_bottom_bar: ^1.0.0

Basic Usage #

return Scaffold(
      appBar: AppBar(title: Text("Blur bar example")),
      body: Stack(
        children: <Widget>[
          _widgetOptions.elementAt(_selectedIndex),
          BlurBottomView(
              bottomNavigationBarItems: const <BottomNavigationBarItem>[
                BottomNavigationBarItem(
                  icon: Icon(Icons.home),
                  title: Text('Home'),
                ),
                BottomNavigationBarItem(
                  icon: Icon(Icons.business),
                  title: Text('Business'),
                ),
                BottomNavigationBarItem(
                  icon: Icon(Icons.school),
                  title: Text('School'),
                )
              ],
              currentIndex: _selectedIndex,
              onIndexChange: (val) {
                _onItemTapped(val);
              }),
        ],
      ),
    );
26
likes
0
pub points
71%
popularity

Publisher

unverified uploader

Flutter blur bottom bar is a recreation of the ios tab view with material desifn for android and ios

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on blur_bottom_bar