Swift/SwiftUI
[UIKit] fullScreen Modal (SwiftUI - fullScreenCover)
insub4067
2023. 5. 13. 22:36
// RootViewController
let destination = StackViewController()
destination.modalPresentationStyle = .fullScreen
self.present(destination, animated: true)
// StackViewController()
self.dismiss(animated: true)