rating_bar 0.2.0 rating_bar: ^0.2.0 copied to clipboard
A customizable Rating Bar for flutter with half rating support
import 'package:flutter/material.dart';
import 'package:rating_bar/rating_bar.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(primarySwatch: Colors.blue),
home: MyHomePage(title: 'Rating Bar Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
double _ratingStar = 0;
double _ratingStarLong = 0;
double _ratingSmile = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(widget.title)),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'Rating : $_ratingStar',
style: Theme.of(context).textTheme.subhead,
),
SizedBox(height: 8),
RatingBar(
onRatingChanged: (rating) => setState(() => _ratingStar = rating),
filledIcon: Icons.star,
emptyIcon: Icons.star_border,
),
SizedBox(height: 32),
Text(
'Read Only Rating : 3.5',
style: Theme.of(context).textTheme.subhead,
),
SizedBox(height: 8),
RatingBar.readOnly(
initialRating: 3.5,
isHalfAllowed: true,
halfFilledIcon: Icons.star_half,
filledIcon: Icons.star,
emptyIcon: Icons.star_border,
),
SizedBox(height: 32),
Text(
'Rating : $_ratingStarLong',
style: Theme.of(context).textTheme.subhead,
),
SizedBox(height: 8),
RatingBar(
maxRating: 10,
onRatingChanged: (rating) =>
setState(() => _ratingStarLong = rating),
filledIcon: Icons.star,
emptyIcon: Icons.star_border,
halfFilledIcon: Icons.star_half,
isHalfAllowed: true,
filledColor: Colors.amber,
size: 36,
),
SizedBox(height: 32),
Text(
'Rating : $_ratingSmile',
style: Theme.of(context).textTheme.subhead,
),
SizedBox(height: 8),
RatingBar(
onRatingChanged: (rating) => setState(() => _ratingSmile = rating),
filledIcon: Icons.sentiment_satisfied,
emptyIcon: Icons.sentiment_dissatisfied,
halfFilledIcon: Icons.sentiment_neutral,
isHalfAllowed: true,
filledColor: Colors.green,
emptyColor: Colors.redAccent,
halfFilledColor: Colors.amberAccent,
size: 48,
),
],
),
);
}
}