A rating package in flutter Five star rating flutter package with hover effect
Examples
You can change the color of start text hover background etc ...
##How To Use
import 'package:flutter/material.dart'; import 'package:five_star_rating/five_star_rating.dart';
In your Flutter project and use this widget
FiveStarRating( allowHalfRating: true, onRatingChanged: (v) { rating = v setState(() {}); }, intialrating: 1, size: 35.0, filledIconData: Icons.star, halfFilledIconData: Icons.star_half, color: Colors.amber, borderColor: Colors.black, textColor: Colors.black, spacing:0.0 ),