jajpa / rating_bar

A customizable Rating Bar for flutter with half rating support
https://pub.dev/packages/rating_bar
MIT License
10 stars 5 forks source link

Read only rating bar always aligned center #2

Open syedfahimabrar opened 4 years ago

syedfahimabrar commented 4 years ago

Read only rating bar is always aligning in centered position. Even wrapping in Align or Container Widget is not working to move in start position of line image Ratingbar has align property in widget tree image child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text( 'A little bit about the site', style: TextStyle( fontSize: SizeConfig.safeBlockHorizontal * 5.5, color: Colors.black), ), Container( alignment: Alignment(-1, 0), child: RatingBar.readOnly( size: SizeConfig.safeBlockHorizontal * 5, initialRating: 3.5, isHalfAllowed: true, halfFilledIcon: Icons.star_half, filledIcon: Icons.star, emptyIcon: Icons.star_border, ), ), ], ), this is my code snippet

syedfahimabrar commented 4 years ago

please close this issue as feature enhancement as it was added in last merge