SwiftUIView+Extensions.swift 373 B

123456789101112131415161718
  1. //
  2. // SwiftUIView+Extensions.swift
  3. // Nextcloud
  4. //
  5. // Created by Milen on 06.06.23.
  6. // Copyright © 2023 Marino Faggiana. All rights reserved.
  7. //
  8. import Foundation
  9. import SwiftUI
  10. extension SwiftUI.View {
  11. func toVC() -> UIViewController {
  12. let vc = UIHostingController (rootView: self)
  13. vc.view.frame = UIScreen.main.bounds
  14. return vc
  15. }
  16. }