AdaptiveWillPopScope constructor

const AdaptiveWillPopScope({
  1. Key? key,
  2. double? swipeWidth,
  3. double? swipeThreshold,
  4. Future<bool> onWillPop()?,
  5. required Widget child,
})

Implementation

const AdaptiveWillPopScope({
  Key? key,
  this.swipeWidth,
  this.swipeThreshold,
  this.onWillPop,
  required this.child,
}) : super(key: key);