The app looks like this:
ProviderScope(
child: MaterialApp.router(
I have a bottom nav and the next flow:
- Bottom nav at index 0 has a widget A
- Widget A has a list and tapping on a list item opens widget B
- Widget B has a popupMenuItem that opens widget C
- Widget C has a TextFormFiled, and when focus on it keyboards appears and the build method is called again for widget A, widget B and widget C
I’m using HookConsumerWidgets.
This issue appeared after upgrading to Flutter 3.24.3, before it didn’t. Maybe there is another option or suggestion than downgrading 🙂
I’m not using MediaQuery, tried resizeToAvoidBottomInset: false and navigation is done like this: Navigator.of(context).push(PageRouteBuilder…
1