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
When clicking the submit button in the math field I can no longer navigate back a page, neither with an android back swipe action nor the back button in the app bar.
If I click inside any input box, including the math field, then I can now navigate back again.
Unsure exactly what causes this. I tried defining my own focus node and unfocus, refocus, unfocusing again but it didn't work.
Update: wrapping the scaffolding in a PopScope and doing onPopInvokedWithResult: (didPop, result) { if(!didPop) { Navigator.of(context).pop(); } },
Fixes it for my use case
The text was updated successfully, but these errors were encountered:
When clicking the submit button in the math field I can no longer navigate back a page, neither with an android back swipe action nor the back button in the app bar.
If I click inside any input box, including the math field, then I can now navigate back again.
Unsure exactly what causes this. I tried defining my own focus node and unfocus, refocus, unfocusing again but it didn't work.
Update: wrapping the scaffolding in a PopScope and doing
onPopInvokedWithResult: (didPop, result) { if(!didPop) { Navigator.of(context).pop(); } },
Fixes it for my use case
The text was updated successfully, but these errors were encountered: