flutter_floating_bottom_navigation_bar icon indicating copy to clipboard operation
flutter_floating_bottom_navigation_bar copied to clipboard

`A RenderFlex overflowed by 24 pixels on the bottom.`

Open yamadade opened this issue 1 year ago • 3 comments

Hello. Thanks for the nice package.

I ran the sample but I get an error, how can I solve this?

    return Scaffold(
      appBar: AppBar(
        title: Text('Example'),
      ),
      //If you want to show body behind the navbar, it should be true
      extendBody: true,
      bottomNavigationBar: FloatingNavbar(
        onTap: (int val) {
          //returns tab id which is user tapped
        },
        currentIndex: 0,
        items: [
          FloatingNavbarItem(icon: Icons.home, title: 'Home'),
          FloatingNavbarItem(icon: Icons.explore, title: 'Explore'),
          FloatingNavbarItem(icon: Icons.chat_bubble_outline, title: 'Chats'),
          FloatingNavbarItem(icon: Icons.settings, title: 'Settings'),
        ],
      ),
    );
Screenshot 2023-12-18 at 14 35 34

yamadade avatar Dec 18 '23 05:12 yamadade