'Radial Menu Flutter
How to create side radial menu in flutter like a picture any help would be appreciated.
i also tried this package but i got the following result not much accurate.
Solution 1:[1]
Try to use circular_menu or fab_circular_menu,use animated_radial_menu refer this artical also
hope its helpful to you
Using Circuler Menu Package:
Container(
height: 250,
width: 150,
child: CircularMenu(
alignment: Alignment.centerRight,
items: [
CircularMenuItem(
icon: Icons.home,
onTap: () {},
),
CircularMenuItem(
icon: Icons.search,
onTap: () {},
),
CircularMenuItem(
icon: Icons.settings,
onTap: () {},
),
CircularMenuItem(
icon: Icons.star,
onTap: () {},
),
],
),
),
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |





