André Sait Eppeland
André Sait Eppeland
In flutter 3.7.8, the onWillPop creates some casting problems, which can be fixed by changing it to this: ` onWillPop: !widget.handleAndroidBackButtonPress && widget.onWillPop != null ? () async { final...
Change the onWillPop to this: `onWillPop: !widget.handleAndroidBackButtonPress && widget.onWillPop != null ? () async { final result = await widget.onWillPop!(_contextList[_controller!.index]); return Future.value(result); }`
To me this doesn't look like a bug, but a UI update. Instead of selecting a command by pressing a single key, you can now type to search. I understand...