2020-02-11a few seconds read (About 41 words)How to use TabView with enum in SwiftUIIssue #599 Specify tag 123456789101112131415161718enum Authentication: Int, Codable { case key case certificate}TabView(selection: $authentication) { KeyAuthenticationView() .tabItem { Text("🔑 Key") } .tag(Authentication.key) CertificateAuthenticationView() .tabItem { Text("📰 Certificate") } .tag(Authentication.certificate)} Updated at 2021-02-23 00:45:29 #swiftswiftUI