aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/iOSApp.swift
diff options
context:
space:
mode:
authorIván <avalos@192.168.1.10>2022-01-23 02:12:54 -0600
committerIván <avalos@192.168.1.10>2022-01-23 02:12:54 -0600
commit5325b8185adf47491475c8b5b3d6079ce37618fa (patch)
tree920e8a9ac4e22e9bfae773f704f27b5aa32ffd3b /iosApp/iosApp/iOSApp.swift
parent6256c457ce6fe49f564e9d5c718d3116f3a0d9c0 (diff)
downloadetbsa-trackermap-mobile-5325b8185adf47491475c8b5b3d6079ce37618fa.tar.gz
etbsa-trackermap-mobile-5325b8185adf47491475c8b5b3d6079ce37618fa.tar.bz2
etbsa-trackermap-mobile-5325b8185adf47491475c8b5b3d6079ce37618fa.zip
Added iOS dependency
Diffstat (limited to 'iosApp/iosApp/iOSApp.swift')
-rw-r--r--iosApp/iosApp/iOSApp.swift10
1 files changed, 8 insertions, 2 deletions
diff --git a/iosApp/iosApp/iOSApp.swift b/iosApp/iosApp/iOSApp.swift
index 0648e86..241beca 100644
--- a/iosApp/iosApp/iOSApp.swift
+++ b/iosApp/iosApp/iOSApp.swift
@@ -1,10 +1,16 @@
import SwiftUI
+import shared
@main
struct iOSApp: App {
+
+ init() {
+ startKoin()
+ }
+
var body: some Scene {
WindowGroup {
- ContentView()
+ LoginContainerView()
}
}
-} \ No newline at end of file
+}