react-native/ios/Native/Application/RootView.swift
2025-08-02 13:00:06 +02:00

24 lines
449 B
Swift

//
// RootView.swift
// RNPlayground
//
// Created by Artur Gurgul on 02/08/2025.
//
import SwiftUI
struct RootView: View {
private let sharedState: SharedState
init(_ sharedState: SharedState) {
self.sharedState = sharedState
}
var body: some View {
VStack {
Text("Hello to SwiftUI!")
if let reactNativeFactory = sharedState.reactNativeFactory {
UIReactNativeView(reactNativeFactory)
}
}
}
}