another.im-ios/ConversationsClassic/View/StartScreen.swift

17 lines
378 B
Swift
Raw Normal View History

2024-06-19 15:15:27 +00:00
import SwiftUI
struct StartScreen: View {
@EnvironmentObject var clientsStore: ClientsStore
2024-06-19 15:15:27 +00:00
var body: some View {
ZStack {
2024-07-04 08:21:12 +00:00
Color.Material.Background.light
2024-06-19 15:15:27 +00:00
Image.logo
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 200, height: 200)
}
.ignoresSafeArea()
}
}