Home of all Messier16 Xamarin.Forms controls ๐ (now .NET standarized1)
Be aware that some functionality might have changed from the previous versions to the 2.X.X (the NET Standard one), if you find any errors (or something that used to work on your previous version but it doesn't anymore), please, submit an issue.
See more Xamarin related posts here: https://thatcsharpguy.com
Get it on NuGet: Messier16.Forms.Controls
Make sure you call (as standard with most plugins) the following line in each and every of your client projects:
Messier16Controls.InitAll();
There are some specific things that you must take into account when working with the controls, find the details below.
- You must provide a pair of images as image resources, you'll need one to represent an empty rating state and a filled rating state. I have provided a couple of them (star.png and star_filled.png) but I strongly suggest you provide your own images to tailor the experience in your app.
- You must set the properties
FilledImage
andImage
of theRatingBar
object, to point to the previously mentioned files:
ratingBar1.FilledImage = "star_filled.png";
ratingBar1.Image = "star.png";
1It probably will give you a horrible warning, but it should work without issues.