-
Notifications
You must be signed in to change notification settings - Fork 130
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
Problems in showing the content of the drawer in CuportinoScaffold #33
Comments
Hi @andreacimino, I'll try to do some tests and let you know. |
@andreacimino specifically, is this the change you made?
|
Almost yes, you can check the version I am using right now. |
@andreacimino the fix you recommended works correctly. I released a new version 0.5.5+1, try it and let me know. thanks |
@andreacimino I have done other tests and unfortunately your solution produces side effects. The code is again as before with the addition of a small modification. Small precautions: every time you update a package, before compiling, uninstall the app from the Android emulator. |
Thank you for the hints! I will try the latest version and see if everything works fine. |
Hello, thank you for the wonderful package!.
I struggled a lot to make work the package under Cupertino.
After some debugging i found the problem:
In line 267 you have
final RenderBox box = _drawerKey.currentContext?.findRenderObject();
The problem is that the drawerKey context is not always the context of the widget.
I managed to solve by changing the signature of the method to:
And then calling:
I am not sending a pull request, since I don't know if this change would break something, thanks.
The text was updated successfully, but these errors were encountered: