Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created August 8, 2020 18:11
Show Gist options
  • Save azamsharp/16d54e3280ad0d5e3a4930adbd3dbe84 to your computer and use it in GitHub Desktop.
Save azamsharp/16d54e3280ad0d5e3a4930adbd3dbe84 to your computer and use it in GitHub Desktop.
var body: some View {
HStack {
ForEach(1..<(max + 1), id: \.self) { index in
Image(systemName: "star.fill")
.foregroundColor(Color.orange)
.onTapGesture {
self.rating = index
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment