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

outdated

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

rating_bar #

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

Getting Started #

Instalation #

Add this to your pubspec.yaml file:

dependencies:
 custom_rating_bar: ^1.0.0

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 #

Alt text

24
likes
0
pub points
91%
popularity

Publisher

verified publishereterkit.com

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_rating_bar