flutter_cupertino_will_pop_scope icon indicating copy to clipboard operation
flutter_cupertino_will_pop_scope copied to clipboard

An enhanced version of Flutter's CupertinoPageRoute

Results 5 flutter_cupertino_will_pop_scope issues
Sort by recently updated
recently updated
newest added

If you modify the will pop scope function to await the result from the dialog and pop/stay based on the result, the page can get stuck in a stuck state....

when i try to pass data by Navigator.pop(context, value), and accept it with Navigator.push( context, CupertinoPageRoute(builder: (context) => ProductScreen(product: productItem))) .then((value) my value always comes empty. I am using your...

Pls. update gradle plugin and fix problem in AndroidManifest The detected reason was: /flutter_cupertino_will_pop_scope/example/android/app/src/main/AndroidManifest.xml uses `android:name="io.flutter.app.FlutterApplication"`

Swipe gesture does not work when using nesting and navigation inside CupertinoTabView For example : ``` class HomeScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: CupertinoTabScaffold(...

I believe I found an odd behaviour when the _onWillPop() callback always vetoes an attempt to pop the screen no matter if it returns true or false; ```dart Future _onWillPop()...