Yaolegol

Results 6 comments of Yaolegol

> Passing `keyboardShoudPersistTaps="always"` in `ModalDropdown` component works for me (keyboardShou" l "dPersistTaps="always") - don't miss a letter "l"!!!

In my case solution is wrap `scrollIntoView` in `setTimeout` with delay `100` ``` if (element) { setTimeout(() => { element.scrollIntoView(); }, 100); } ```

I solve such problem with this code More about [here](https://medium.com/flutter-community/flutter-navigation-maintaining-tab-state-while-navigating-bottomnavigationbar-6009fbceb59c) ``` // dont forget add import import 'dart:io'; WillPopScope( child: ..., // you app, maybe navigation stack onWillPop: () async...