skip to Main Content

enter image description here

I dont want to use package for navigation.I just want to create this shape.could you help me?

2

Answers


  1. Follow this for any type of custom paint or shape in Flutter

    Wave Background Flutter Assistance

    Login or Signup to reply.
  2. Wrap the BottomNavigationBar widget with BottomAppBar Widget.

    Add shape property in BottomAppBar widget

    shape: CircularNotchedRectangle(),
    

    Then change FloatingActionButton location to:

    floatingActionButtonLocation : FloatingActionButtonLocation.centerDocked,
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search