ExtendedMauiControls 1.0.2
See the version list below for details.
dotnet add package ExtendedMauiControls --version 1.0.2
NuGet\Install-Package ExtendedMauiControls -Version 1.0.2
<PackageReference Include="ExtendedMauiControls" Version="1.0.2" />
paket add ExtendedMauiControls --version 1.0.2
#r "nuget: ExtendedMauiControls, 1.0.2"
// Install ExtendedMauiControls as a Cake Addin #addin nuget:?package=ExtendedMauiControls&version=1.0.2 // Install ExtendedMauiControls as a Cake Tool #tool nuget:?package=ExtendedMauiControls&version=1.0.2
Extended MAUI Controls
Unlock the true potential of .NET MAUI development with ExtendedMauiControls, a powerful toolkit designed to extend simple controls and effortlessly create sophisticated, custom UI elements.
Built exclusively for .NET MAUI, our library seamlessly integrates with the cross-platform framework, enabling you to enhance your app's UI on iOS, Android, and Windows with a unified codebase.
Right now, the toolkit is quite new and not tested in Windows devices, so some controls or properties may be unusable for the time being.
Getting Started
First, in order to use ExtendedMauiControls you need to call in yout project's MauiProgram.cs the extension method of the dependent package CommunityToolkit.Maui and then call the extension method that initializes our toolkit.
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
// Initialize .NET MAUI Community Toolkit
builder.UseMauiApp<App>().UseMauiCommunityToolkit();
// Initialize Extended .NET MAUI Controls Toolkit
builder.UseMauiApp<App>().UseExtendedMauiControls();
}
Available Extented Controls
ExtendedEntry
Bindable Properties:
- Text
Properties:
- Placeholder
- IsPassword
- HasClearButton
- PrefixIcon
- SuffixIcon
- PrimaryColor
- SecondaryColor
Important Notes
PrimaryColor and SecondaryColor are binded your project's Colors.xaml, so if they are missing you need to add them in your file as shown below:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Color x:Key="Primary">#512BD4</Color>
<Color x:Key="Secondary">#DFD8F7</Color>
</ResourceDictionary>
If you are not using the Colors.xaml file you have to use the PrimaryColor and SecondaryColor
If those values are missing, you need to set the control's PrimaryColor and SecondaryColor, otherwise the control will not render.
Usage
You can use the namespace below to use the tookit in xaml or C#
xaml
xmlns:emc="clr-namespace:ExtendedMauiControls.Controls;assembly=ExtendedMauiControls"
C#
using MauiExtendedControls.Controls;
Example
Below you can see a simple usage example on a sign-in view
<emc:ExtendedEntry Text="{Binding Username}"
Placeholder="Username"
PrefixIcon="Person"/>
<emc:ExtendedEntry Text="{Binding Password}" IsPassword="True"
Placeholder="Password"
PrefixIcon="Lock"/>
License
Huge thanks to AathifMahir for his incredible work on creating MAUI Icons and making it easier to use Material Icons and many more in .NET MAUI.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-android34.0 is compatible. net8.0-ios17.0 is compatible. net8.0-maccatalyst17.0 is compatible. net8.0-windows10.0.19041 is compatible. |
-
net8.0-android34.0
- AathifMahir.Maui.MauiIcons.Material (>= 2.0.0)
- CommunityToolkit.Maui (>= 7.0.0)
- CommunityToolkit.Mvvm (>= 8.2.2)
-
net8.0-ios17.0
- AathifMahir.Maui.MauiIcons.Material (>= 2.0.0)
- CommunityToolkit.Maui (>= 7.0.0)
- CommunityToolkit.Mvvm (>= 8.2.2)
-
net8.0-maccatalyst17.0
- AathifMahir.Maui.MauiIcons.Material (>= 2.0.0)
- CommunityToolkit.Maui (>= 7.0.0)
- CommunityToolkit.Mvvm (>= 8.2.2)
-
net8.0-windows10.0.19041
- AathifMahir.Maui.MauiIcons.Material (>= 2.0.0)
- CommunityToolkit.Maui (>= 7.0.0)
- CommunityToolkit.Mvvm (>= 8.2.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.