Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.96 KB

README.md

File metadata and controls

53 lines (37 loc) · 1.96 KB

osom_rating

the most fun way to get a rating component for your flutter apps

osom

Installing

Add the osom_rating to your pubspec.yaml file

dependencies:
  osom_rating: 0.0.3

then install the package using the get command

flutter packages get

Usage

import it inside your app

import 'package:osom_rating/osom_rating.dart';

then create a new instance of the component

// by default it will generate five stars
OsomRating();

Options

Parameter Default Description
rating 0 the rating value
totalStars 5 the quantity of stars to generate
colorStar Colors.yellow the color of the full star
colorEmptyStar Colors.black the color of the empty star
sizeStar 60 the size of the stars
minimunHalfValue 5 the decimal part to considered a star as a half value. 5 means any x.5 value will be considered as a half star

Events

Event Param
onTapped current index value
onDoubleTapped none