Skip to content

magickworx/StarRatingViewSwiftUI

Repository files navigation

StarRatingViewSwiftUI

This package provides you with an easy way to show / edit star rating as following screenshot.

examples

You can add this package on Xcode. See documentation.

How to Use

You can just import StarRatingViewSwiftUI to use the package.

  StarRatingView(rating: 4)
    .frame(width: 300, height: 30)
  StarRatingView(rating: 5.5, color: .pink, maxRating: 7)
    .frame(width: 300, height: 30)
  @State var rating: Float = 1.5

  StarRatingView(rating: $rating)
    .onChange(of: rating) { newRating in
      print(newRating)
    }
    .frame(width: 300, height: 30)

License

This package is licensed under BSD License