Circular Menu Flutter

This type of Circular menu can be created using circular_menu package . now the current version is ^1.1.2 . Take the latest version from Here dependencies: circular_menu: ^1.1.2 just add the dependency into pubspec.yaml file and run pub get. make sure there is no error in the terminal . now import the package into the dart file. import 'package:circular_menu/circular_menu.dart' ; Now we can use this circular menu . important point: CircularMenu() has to be used in the body .onTap function is also very important . If you don't have any function then make it blank. body: CircularMenu( alignment: Alignment.bottomCenter, toggleButtonColor: Colors.pink, items: [ CircularMenuItem( icon: Icons.home, ...