mirror of
https://github.com/FluxaMedia/fluxa.git
synced 2026-07-29 13:12:47 +00:00
11 lines
319 B
Swift
11 lines
319 B
Swift
import FluxaShared
|
|
import SwiftUI
|
|
import UIKit
|
|
|
|
struct FluxaRootView: UIViewControllerRepresentable {
|
|
func makeUIViewController(context: Context) -> UIViewController {
|
|
FluxaApple.shared.rootViewController()
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
|
|
}
|