import SwiftUI struct RegistrationScreen: View { @EnvironmentObject var navigation: NavigationStore public var body: some View { ZStack { Color.Material.Background.light Button { withAnimation { navigation.flow = .entering(.welcome) } } label: { VStack { Text("Not yet implemented") Text(L10n.Global.back) } } } .ignoresSafeArea() } }