custom_rating_bar 2.0.5 copy "custom_rating_bar: ^2.0.5" to clipboard
custom_rating_bar: ^2.0.5 copied to clipboard

Custom rating bar for flutter with support of custom icons, half icons, directions, alignments & more.

custom_rating_bar #

Custom rating bar for flutter with support of: custom icons, half icons, directions, alignments & more.

Getting Started #

How to use #

import 'package:custom_rating_bar/custom_rating_bar.dart';

Basic widget

RatingBar(
  filledIcon: Icons.star, 
  emptyIcon: Icons.star_border,
  onRatingChanged: (value) => debugPrint('$value'),
  initialRating: 3,
  maxRating: 5,
)

Read only widget

RatingBar.readOnly(
  filledIcon: Icons.star, 
  emptyIcon: Icons.star_border,
  initialRating: 4,
  maxRating: 5,
)

Examples #

24
likes
140
pub points
91%
popularity
screenshot

Publisher

verified publishereterkit.com

Custom rating bar for flutter with support of custom icons, half icons, directions, alignments & more.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_rating_bar