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