another.im-ios/AnotherIM/View/StartScreen.swift
2024-10-31 12:43:16 +01:00

17 lines
378 B
Swift

import SwiftUI
struct StartScreen: View {
@EnvironmentObject var clientsStore: ClientsStore
var body: some View {
ZStack {
Color.Material.Background.light
Image.logo
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 200, height: 200)
}
.ignoresSafeArea()
}
}