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 04b875c commit 9264071Copy full SHA for 9264071
example/swift/App.swift
@@ -24,11 +24,19 @@ struct ContentView: View {
24
.font(.title)
25
.bold()
26
.padding()
27
+ .multilineTextAlignment(.center)
28
29
NavigationLink("Push React Native Screen") {
30
ReactNativeView(moduleName: "ReactNative")
31
.navigationBarHidden(true)
32
}
33
+
34
+ Button("Stop React Native") {
35
+ ReactNativeBrownfield.shared.stopReactNative()
36
+ }
37
+ .buttonStyle(PlainButtonStyle())
38
+ .padding(.top)
39
+ .foregroundColor(.red)
40
41
42
0 commit comments