Skip to content

Instantly share code, notes, and snippets.

@krasi-pl
Created July 2, 2019 12:08
Show Gist options
  • Save krasi-pl/7880abcd053b1f96ee49325e9cfadd47 to your computer and use it in GitHub Desktop.
Save krasi-pl/7880abcd053b1f96ee49325e9cfadd47 to your computer and use it in GitHub Desktop.
Simple 5 Images
struct RatePicker : View {
var body: some View {
HStack {
ForEach((1...5)) { id in
Button(action: {}) {
Image(systemName: "star")
.foregroundColor(.yellow)
.imageScale(.large)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment