We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453f965 commit c65a502Copy full SHA for c65a502
ios/ReactNativeView.swift
@@ -8,7 +8,10 @@ struct ReactNativeViewRepresentable: UIViewControllerRepresentable {
8
var initialProperties: [String: Any] = [:]
9
10
func makeUIViewController(context: Context) -> UIViewController {
11
- return ReactNativeViewController(moduleName: moduleName)
+ return ReactNativeViewController(
12
+ moduleName: moduleName,
13
+ initialProperties: initialProperties
14
+ )
15
}
16
17
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
0 commit comments