2024-06-19 15:15:27 +00:00
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct StartScreen: View {
|
2024-09-03 15:13:58 +00:00
|
|
|
@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()
|
|
|
|
}
|
|
|
|
}
|