How to use array of strings in ForEach in SwiftUI
Issue #483
Every item in list must be uniquely identifiable
1 | List { |
In case of primitive, we can just provide id
to conform to Identifiable
1 | extension String: Identifiable { |
Issue #483
Every item in list must be uniquely identifiable
1 | List { |
In case of primitive, we can just provide id
to conform to Identifiable
1 | extension String: Identifiable { |