Maui.RatingView - is a cross platform plugin for MAUI which allow you to use the rating capabilities in your application with ease and flexibility.
Important : this plusing is still in pre-release mode, ensure that in visual studio package manage the prerealse checkbox is check to be able to see it.
RatingControl-alpha-v1.1.2_demo.mp4
RatingControl-alpha-v1.1.2_demo_mobile.mp4
- Add the package reference to your project's .csproj file
- Look for the RatingViewControl into your project's package manager
dotnet add package RatingViewControl --version 1.1.2-alpha
- First Add the reference to the control into your xaml file like this
xmlns:rv="clr-namespace:RatingView.Views;assembly=RatingView"
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:rv="clr-namespace:RatingView.Views;assembly=RatingView"
x:Class="MauiApp2.MainPage">
</ContentPage>
- Then use the control in your xaml page like shown below.
<rv:RatingControl Maximum="6" Size="40" Fill="Red" Value="3" />
Attribute | Description |
---|---|
Shape | the shape to display. there is 4 supported types (Heart,Like,Dislike,Star) |
Maximum | the maximum rating value. the default maximum value is 5 |
Size | the size of the shape it's an int type. The default shape size is 20px |
Fill | The color used when the shape is filled. the default color is Orange |
Value | support double values, the current rate value |
EmptyColor | The color of filling when the shape is empty. The default color is White |
StrokeColor | The color of the shape's stroke. The default value is Gray |
StrokeThickness | The thickness of the shape's stroke. The default value is 7px |
Spacing | defines the space between drawn shapes. By default the space defined is 10px |
AllowRating | A boolean value which define if the click event can be handled to change(update) the rating value |
Command | Used when the AllowRating is defined to True this command attribute can be used to perfom a specifique action on rating value changed |
CommandParameter | of type of object which is the parameter passed to the command when executed. Note that this parameter when handled in your code it will be of type of Rating object which object is a part of the plugin. It has 2 Properties Value : which is the rating value Paramter : the command parameter passed from the xaml page |
BindControl | This property allows to bind a specific rating view to another one, usefull in some cases. Eg. Youtube Liking behavior |
Animate | This property define that the Shape scale should change when Touched or Overlayed (For Desktop App only at this time ) |
<VerticalStackLayout Spacing="5">
<Label Text="Liking" HorizontalOptions="Center"/>
<HorizontalStackLayout Spacing="10" HorizontalOptions="CenterAndExpand">
<rv:RatingControl x:Name="likedBtn" Maximum="1" Value="{Binding Liked}" Size="40" AllowRating="True"
Fill="ForestGreen" Command="{Binding LikeDislikeCommand}" BindControl="{x:Reference unLikedBtn}"
StrokeThickness="5" Shape="Like"/>
<rv:RatingControl x:Name="unLikedBtn" Maximum="1" Value="{Binding UnLiked}" Size="40" AllowRating="True"
Fill="DarkRed" Command="{Binding LikeDislikeCommand}"
BindControl="{x:Reference likedBtn}"
StrokeThickness="5" Shape="Dislike"/>
</HorizontalStackLayout>
</VerticalStackLayout>
Output
YoutubeLikeRatingDemo.mp4
<rv:RatingControl Maximum="1"
Size="40"
Fill="Red"
Shape="Heart"
AllowRating="True" />
OutPut
HeartLinkingDemo.mp4
- LinkedIn: Eliezer Bwana
- Twitter: @BwanaEliezer
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: