WillPopScope constructor
- @Deprecated('Use PopScope instead. ' 'This feature was deprecated after v3.12.0-1.0.pre.')
- Key? key,
- required Widget child,
- required WillPopCallback? onWillPop,
Creates a widget that registers a callback to veto attempts by the user to dismiss the enclosing ModalRoute.
Implementation
@Deprecated(
'Use PopScope instead. '
'This feature was deprecated after v3.12.0-1.0.pre.',
)
const WillPopScope({
super.key,
required this.child,
required this.onWillPop,
});