Answers for "flutter ios disable back gesture"

0

flutter ios disable back gesture

// Wrap your widget tree with the [WillPopScope] widget.
// The Android back button and AppBar back button will still work.
@override
Widget build(BuildContext context) {
  return WillPopScope(
    onWillPop: () async => !Navigator.of(context).userGestureInProgress,
    child: /* ... */
  );
}
Posted by: Guest on April-05-2020

Code answers related to "flutter ios disable back gesture"

Code answers related to "Dart"

Browse Popular Code Answers by Language