mirror of
https://github.com/FluxaMedia/fluxa.git
synced 2026-08-06 08:48:51 +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) {}
|
|
}
|