Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created August 8, 2020 18:15
Show Gist options
  • Select an option

  • Save azamsharp/acfcc62f805575eb9c20405d3823e070 to your computer and use it in GitHub Desktop.

Select an option

Save azamsharp/acfcc62f805575eb9c20405d3823e070 to your computer and use it in GitHub Desktop.
private func starType(index: Int) -> String {
if let rating = self.rating {
return index <= rating ? "star.fill" : "star"
} else {
return "star"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment