Skip to content

Instantly share code, notes, and snippets.

@okwasniewski
Created September 30, 2024 14:20
Show Gist options
  • Save okwasniewski/d06b2667a05ea20258c972af9b5f3d4b to your computer and use it in GitHub Desktop.
Save okwasniewski/d06b2667a05ea20258c972af9b5f3d4b to your computer and use it in GitHub Desktop.
@main
struct BrownfieldSwiftUIApp: App {
@UIApplicationDelegateAdaptor var delegate: AppDelegate
var body: some Scene {
WindowGroup {
TabView {
ContentView()
.tabItem {
Label("Home", systemImage: "house")
}
ReactNativeView(
moduleName: "ReactNativeScreen",
rootViewFactory: delegate.rootViewFactory
)
.tabItem {
Label("Settings", systemImage: "gear")
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment