-
-
Notifications
You must be signed in to change notification settings - Fork 626
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
NoSuchMethodError after update to 0.5.0 #71
Comments
can you show code on how you solved it.. thnx |
In slidable.dart (in flutter_slidable lib) replace
With something like this
For me it's working fine |
I can confirm the problem (and the solution ^^) would be nice to have this patch and deploy @letsar :) |
First time trying the package and I'm running into this issue as well. @PabloPL maybe you could send a PR to get this fixed ? |
PR created. |
have the same problem, hopefully, the PR can be merged ASAP..... |
Please fix ASAP! |
Until we have this PR merged, I am using a workaround, set dismissal to the following:
this is enforcing to have a dismissal property by always is canceling the dismissal actions |
Thanks, @eponcedeleon. Your solution worked here, but I had to add a |
Fixed in 0.5.2 |
I'm getting following error after update to 0.5.0 version
widget.dismissal
is null in _dismissThresholdAdding some dummy check for null value in dismissal solves error (no idea why ?? operator is not working when ?. returns null...)
The text was updated successfully, but these errors were encountered: