You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reverted back to 4.1.0 and this code works, on the newest version it doesn't. I think it has something to do with how this flutter_speed_dial package disposes
Reverted back to 4.1.0 and this code works, on the newest version it doesn't. I think it has something to do with how this flutter_speed_dial package disposes
My Code:
SpeedDial(
useRotationAnimation: true,
overlayColor: Colors.teal,
overlayOpacity: 0.0,
curve: Curves.easeIn,
....
children:[ SpeedDialChild(
child: Icon(Icons.edit_rounded),
label: "Create",
backgroundColor:
Theme.of(context).colorScheme.DIAL_CREATE,
onTap: () {
Navigator.of(context).pushNamed(routes.EditInfoRoute);
})]
The problem is when the navigator pushes to a new page, that new page loses all functionality. Tested with different pages all have the same problem
The text was updated successfully, but these errors were encountered: