Created
February 19, 2021 10:41
-
-
Save am-MongoDB/a4345cdd3a95d70daceed9ded35dde9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import RealmSwift | |
let app = App(id: "tasktracker-xxxxx") // TODO: Set the Realm application ID | |
@main | |
struct swiftui_realmApp: SwiftUI.App { | |
@StateObject var state = AppState() | |
var body: some Scene { | |
WindowGroup { | |
ContentView() | |
.environmentObject(state) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment