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

15 lines
323 B
Swift
Raw Normal View History

2024-06-19 15:06:39 +00:00
import SwiftUI
struct StartScreen: View {
var body: some View {
ZStack {
Color.Material.Background.light
Image.logo
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 200, height: 200)
}
.ignoresSafeArea()
}
}