This repository was archived by the owner on Jan 19, 2023. It is now read-only.
This repository was archived by the owner on Jan 19, 2023. It is now read-only.
Change ringDiameter/ ringWidth: Lower button at right seems to be lost the click event #14
Open
Description
Hey! Congrats for this project! It's unique at this time!
- Using version: 1.0.0
2 This is the code structure:
`floatingActionButton: FabCircularMenu(
alignment: Alignment.bottomRight,
ringWidth: 130,
children: <Widget>[
IconButton(
iconSize: 40,
icon: Icon(
Icons.home,
),
onPressed: () {
print('Home');
}),
IconButton(
iconSize: 40,
icon: Icon(
Icons.favorite,
size: 40,
),
onPressed: () {
controller.go2List();
print('GoToLists');
}),
IconButton(
iconSize: 40,
icon: Icon(
Icons.favorite,
size: 40,
),
onPressed: () {
print('Favorite');
}),
IconButton(
iconSize: 40,
icon: Icon(
Icons.favorite,
size: 40,
),
onPressed: () {
print('Favorite');
}),
IconButton(
iconSize: 40,
icon: Icon(
Icons.favorite,
size: 40,
),
onPressed: () {
print('Favorite');
}),
],
ringColor: Color.fromARGB(70, 255, 255, 255),
),`
- The issue
The first icon in the list ( Icons.home, ) seems to be unclickable... But sometimes is possible to do the click, somewhere around the icon... (kind of offset region)