2019-12-09a few seconds read (About 33 words)How to show localized text in SwiftUIIssue #533 123456789101112struct ContentView: View { @Environment(\.locale) var locale: Locale var body: some View { VStack { Text(LocalizedStringKey("hello")) .font(.largeTitle) Text(flag(from: locale.regionCode!)) .font(.largeTitle) } }}#swiftswiftUI