Skip to content

Instantly share code, notes, and snippets.

@imjhk03
Created September 14, 2023 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imjhk03/af4787ec7a2590f3c39a96be5a466482 to your computer and use it in GitHub Desktop.
Save imjhk03/af4787ec7a2590f3c39a96be5a466482 to your computer and use it in GitHub Desktop.
Make SwiftUI view to UIView
extension View {
func hostingView() -> UIView {
let hostingView = UIHostingController(rootView: self)
return hostingView.view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment