-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A OverlayEntry was used after being disposed. #218
Comments
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
please post a complete sample class that works and throws that error so we can investigate |
Logs
|
@SakshiSamdaniSomani Can you post a sample code to reproduce the error. |
CodeSpeedDial(
child: SvgPicture.asset(
ImageConstants().threedotwhite,
width: 20,
height: 20,
),
activeChild: Icon(Icons.close),
direction:
isfabonleft ? SpeedDialDirection.right : SpeedDialDirection.left,
backgroundColor: Color.fromRGBO(65, 132, 243, 1),
overlayColor: Colors.grey,
overlayOpacity: 0.0,
spacing: 0,
spaceBetweenChildren: 0,
closeManually: false,
foregroundColor: Colors.white,
children: [
SpeedDialChild(
child: ImageIcon(
AssetImage("assets/images/bell.png"),
size: 20,
),
backgroundColor: Theme.of(context).backgroundColor,
onTap: () {
print('Alerts Tapped');
}),
SpeedDialChild(
child: ImageIcon(
AssetImage("assets/images/openPos.png"),
size: 20,
),
backgroundColor: Theme.of(context).backgroundColor,
onTap: () {
print('Positions Tapped');
}),
SpeedDialChild(
child: ImageIcon(
AssetImage("assets/images/school.png"),
size: 20,
),
backgroundColor: Theme.of(context).backgroundColor,
onTap: () {
print('Orders Tapped');
}),
SpeedDialChild(
child: SvgPicture.asset(
"assets/svg/back.svg",
width: 20,
height: 20,
color: Colors.white,
),
backgroundColor: Theme.of(context).backgroundColor,
onTap: () {
print('Back Tapped');
}),
],
), |
rotate the screen and then when we do any action using the buttons we get this error. |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Same issue when testing it with goldens |
Try now (version 6.0.0) |
I am facing this issue on 6.0.0 Stack trace
|
Yes, I'm also facing this issue on 6.0.0. Any update on this? |
Fixed: |
Will have a look when home |
I cannot reproduce this in any suggested way. Post a small code example or, if you already found the solution, feel free to open a PR |
Closing as inactive |
Hey guys, I get this stack trace when using the plugin. Ever seen this before?
stack trace
The text was updated successfully, but these errors were encountered: