give star rating reviews
a package for giving reviews for the things.
getting started
dependencies:
givestarreviews: ^1.0.2
$ flutter pub get
import 'package:givestarreviews/givestarreviews.dart';
example
multiple
givestarreviews(
stardata: [
givestardata(text: 'review 1', onchanged: (rate) {}),
givestardata(text: 'review 2', onchanged: null),
givestardata(text: 'review 3', starcount: 3, onchanged: (rate) {}),
],
),
single
starrating(onchanged: (rate) {}),
to make a read only starrating
, simply set the onchanged
to null or leave empty.
contributions
contributions of any kind are more than welcome! feel free to download and improve in any way you want, make a pull request, or open an issue.
Comments are closed.