another.im-ios/AnotherIM/View/StartScreen.swift
2024-12-17 14:08:59 +01:00

15 lines
323 B
Swift

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()
}
}