Update "Full Screen" mode in Sample App

This commit is contained in:
tun57 2019-05-11 18:38:12 -07:00
parent b8f7e613ec
commit a9edeb1d71
1 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,14 @@ extension FullScreenNavController: PanModalPresentable {
return 1.0
}
var transitionDuration: Double {
return 0.4
}
var transitionAnimationOptions: UIView.AnimationOptions {
return [.allowUserInteraction, .beginFromCurrentState]
}
var shouldRoundTopCorners: Bool {
return false
}