buildAnimatedPage method
Implementation
@override
Page<dynamic> buildAnimatedPage(BuildContext context) {
if (!swipeToDismissEnabled && defaultTargetPlatform == TargetPlatform.iOS) {
return NoSwipePage<dynamic>(
key: key,
name: screenName,
child: builder(context),
);
}
return super.buildAnimatedPage(context);
}