Introducing the New .NET MAUI Rating Control | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (174).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (215)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (118)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (914)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (147)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (628)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (507)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (592)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Introducing the New .NET MAUI Rating Control

Introducing the New .NET MAUI Rating Control

A rating UI control was one of the controls most requested by our mobile app developers. We at Syncfusion understand the requirement for this essential control and have now delivered the .NET MAUI Rating control in our 2022 Volume 4 release.

Let’s look at the key features of the new .NET MAUI Rating control and the steps to get started with it.

Key features

The .NET MAUI Rating control allows users to select a rating value from a group of visual symbols like stars. It can provide ratings for services provided or products, such as movies and software apps.

The control is packed with a lot of cool features, some of the most important being:

Rating precision

The .NET MAUI Rating control provides flexible precision support to handle full, half, or exact values.

Standard (full)

Users can select a rating from whole values.

Full-Value Rating Selection
Full-Value Rating Selection

Half

Users can select a rating to the nearest half-value.

Half-Value Rating Selection
Half-Value Rating Selection

Exact

Users can select precise values as their rating.

Exact Value Rating Selection
Exact Value Rating Selection

Rating shapes

The .NET MAUI Rating control provides four predefined shapes and a custom shape option.

Predefined shapes

The following predefined shapes are available:

  • Star (default)
  • Heart
  • Circle
  • Diamond
Predefined Shapes in .NET MAUI Rating Control
Predefined Shapes in .NET MAUI Rating Control

Custom rating shapes

You can load custom path shapes as rating items, too.

Custom Rating Shapes in .NET MAUI Rating Control
Custom Rating Shapes in .NET MAUI Rating Control

Rating with read-only mode

The .NET MAUI Rating control can also be used in a read-only mode. In this mode, users cannot interact with the control.

Read-Only Mode in .NET MAUI Rating Control
Read-Only Mode in .NET MAUI Rating Control

Customization

You can customize the item color, border color, spacing, and selection color of the .NET MAUI Rating control to fit the items to your app’s theme.

Custom item size

You can make the Rating control more accessible and enhance its accuracy by customizing the item size.

Customizing the Item Size in .NET MAUI Rating Control
Customizing the Item Size in .NET MAUI Rating Control

Custom items count

Specify the number of items displayed in the Rating control (e.g., how many stars).

Customizing the Number of Items in .NET MAUI Rating Control
Customizing the Number of Items in .NET MAUI Rating Control

Custom item spacing

You can also specify the amount of space between each item in the Rating control like in the following image.

Customizing the Item Spacing in .NET MAUI Rating Control
Customizing the Item Spacing in .NET MAUI Rating Control

Selected and unselected colors

Customize the fill colors for the selected and unselected states for items.

.NET MAUI Rating Control with Custom Colors
.NET MAUI Rating Control with Custom Colors

Custom items border color

An item’s border color can make its appearance more attractive. Customize the border color to highlight the selected and unselected items’ fill colors.

Customizing the Border Colors in .NET MAUI Rating Control
Customizing the Border Colors in .NET MAUI Rating Control

Custom stroke thickness

You can customize the stroke thickness of the item borders, like in the following image.

Customizing the Stroke Thickness in .NET MAUI Rating Control
Customizing the Stroke Thickness in .NET MAUI Rating Control

Getting started with .NET MAUI Rating control

We have seen the top features of the .NET MAUI Rating control. Let’s now see how to add it to your application.

Step 1: Create a .NET MAUI project.

First, create a .NET MAUI project.

Step 2: Add .NET MAUI Rating NuGet package.

Syncfusion .NET MAUI controls are available in the NuGet Gallery. To add the .NET MAUI Rating control to your project, open the NuGet package manager in Visual Studio, and search for Syncfusion.Maui.Inputs, and then install it.

Step 3: Register the handler.

In the MauiProgram.cs file, register the handler for Syncfusion core. Refer to the following code.

using Microsoft.Maui;
using Microsoft.Maui.Hosting;
using Microsoft.Maui.Controls.Compatibility;
using Microsoft.Maui.Controls.Hosting;
using Microsoft.Maui.Controls.Xaml;
using Syncfusion.Maui.Core.Hosting;
using Syncfusion.Maui.ListView.Hosting;
 
namespace RatingSample
{
    public static class MauiProgram
    {
        public static MauiApp CreateMauiApp()
        {
            var builder = MauiApp.CreateBuilder();
            builder
            .UseMauiApp<App>()
            .ConfigureSyncfusionCore()
            .ConfigureSyncfusionListView()
            .ConfigureFonts(fonts =>
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
            });
 
            return builder.Build();
        }     
    }
}

Step 4: Add the namespace.

Now, add Syncfusion.Maui.Inputs namespace in your XAML page.

<xmlns:rating="clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs"/>

Step 4: Initialize the Rating control.

Then, add the .NET MAUI Rating control with the required optimal name using the included namespace.

<rating:SfRating x:Name="rating" />

Step 5: Set the number of rating items.

In this demo, we will create a rating application with 5 items. To do so, we use the ItemCount property to define the number of rating items.

<rating:SfRating ItemCount="5" />

Note: The default value of ItemCount is 5. You can customize it.

Step 6: Set the rating value.

Now, let’s programmatically assign a value to the Value property to display the selected rating. We are setting the display value as 3.

<rating:SfRating Value="3" />

Note: The default value of the Value property is 0.

Step 7: Set precision.

Finally, we need to choose if full, half or exact values can be chosen for ratings. This can be set using the Precision property. By default, the precision mode is Standard.

<rating:SfRating Precision="Standard" />

Refer to the following image.

Integrating Rating Control into the .NET MAUI Application
Integrating Rating Control into the .NET MAUI Application

Supercharge your cross-platform apps with Syncfusion's robust .NET MAUI controls.

Conclusion

Thanks for reading! In this blog, we have seen the new .NET MAUI Rating control features available in our 2022 Volume 4 release. You can download Essential Studio for .NET MAUI to evaluate this control. Check out our Release Notes and What’s New pages to see the other updates in this release.

If you need any clarification, please mention it in the comments section below! You can also contact us through our support forum, support portal, or feedback portal. We are always happy to assist you!

Test Flight
App Center Badge
Google Play Store Badge
Microsoft Badge
Github Store Badge

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed