CommonControls.Maui 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package CommonControls.Maui --version 1.0.6
                    
NuGet\Install-Package CommonControls.Maui -Version 1.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CommonControls.Maui" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CommonControls.Maui" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="CommonControls.Maui" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CommonControls.Maui --version 1.0.6
                    
#r "nuget: CommonControls.Maui, 1.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CommonControls.Maui@1.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CommonControls.Maui&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=CommonControls.Maui&version=1.0.6
                    
Install as a Cake Tool

CommonControls.Maui

NuGet

A .NET MAUI library providing clean, borderless input controls with Android and iOS handler mappings.

Controls

Control Description
BorderlessEntry Entry without platform border/underline
BorderlessEditor Editor without platform border/underline
PasswordEntry Password input with built-in show/hide toggle
ValidationEntry Entry with configurable border, separator, and inline error message

Installation

<ItemGroup>
  <PackageReference Include="CommonControls.Maui" Version="1.0.6" />
</ItemGroup>

Setup

Register handler mappings once in MauiProgram.cs:

using CommonControls.Maui.Hosting;

builder.UseCommonControls();

XAML namespace

xmlns:cc="clr-namespace:CommonControls.Maui.Controls;assembly=CommonControls.Maui"

BorderlessEntry

Entry with the platform-native border/underline removed.

<cc:BorderlessEntry Placeholder="Email" />

BorderlessEditor

Editor with the platform-native border removed.

<cc:BorderlessEditor Placeholder="Notes" HeightRequest="100" />

PasswordEntry

Password input with a built-in show/hide toggle button. Uses bundled eye icons by default; supports custom image sources.


<cc:PasswordEntry Placeholder="Password" />


<cc:PasswordEntry
    Placeholder="Password"
    ShowPasswordImageSource="my_eye.png"
    HidePasswordImageSource="my_hidden.png"
    ImageHeight="20"
    ImageWidth="20" />

Properties

Property Type Default Description
Text string null Input text (two-way bindable)
Placeholder string null Placeholder text
IsPassword bool true Toggles password masking
ShowPasswordImageSource ImageSource built-in eye icon Icon shown when password is hidden
HidePasswordImageSource ImageSource built-in hidden icon Icon shown when password is visible
ImageHeight double 24 Toggle icon height
ImageWidth double 24 Toggle icon width
FontSize double 14 Input font size
TextColor Color platform default Input text color
PlaceholderColor Color platform default Placeholder text color

ValidationEntry

An entry with a configurable border and inline error message. The border and separator are independently controlled — mix and match to suit your design.

Border / separator combinations

BorderVisible SeparatorVisible Error state appearance
false false no border, no separator — only error text
true false border switches to ErrorBorderColor, no separator
false true no border, separator line appears above error text
true true border and separator both switch to error color

<cc:ValidationEntry
    Placeholder="Email"
    Keyboard="Email"
    SeparatorVisible="True"
    ErrorSeparatorColor="Red"
    ErrorMessage="Please enter a valid email"
    IsValid="{Binding IsEmailValid}" />


<cc:ValidationEntry
    Placeholder="Username"
    BorderColor="Gray"
    BorderVisible="True"
    ErrorBorderColor="Red"
    ErrorMessage="This field is required"
    IsValid="{Binding IsUsernameValid}" />


<cc:ValidationEntry
    Placeholder="Password"
    BorderColor="Black"
    BorderVisible="True"
    CornerRadius="8"
    ErrorBorderColor="Black"
    SeparatorVisible="True"
    ErrorSeparatorColor="Black"
    ErrorMessage="Must be at least 8 characters"
    ErrorColor="Orange"
    ErrorFontSize="11"
    IsValid="{Binding IsPasswordValid}" />

Properties

Property Type Default Description
Text string null Input text (two-way bindable)
Placeholder string null Placeholder text
IsValid bool true When false, switches to error state
ErrorMessage string empty Text shown below the entry when invalid
Keyboard Keyboard Default Keyboard type (Email, Numeric, Telephone, etc.)
FontSize double 14 Input font size
TextColor Color platform default Input text color
PlaceholderColor Color platform default Placeholder text color
BorderVisible bool false Show a rectangular border around the control
BorderColor Color Transparent Border color when valid
ErrorBorderColor Color Red Border color when invalid
CornerRadius double 0 Corner radius of the border
SeparatorVisible bool false Show a 1px line above the error message when invalid
ErrorSeparatorColor Color Red Separator color when invalid
ErrorColor Color Red Error message text color
ErrorFontSize double 12 Error message font size

Events

Event Description
TextChanged Raised when the input text changes
Product Compatible and additional computed target framework versions.
.NET net10.0-android36.0 is compatible.  net10.0-ios26.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.1 95 3/2/2026
1.1.0 95 3/2/2026
1.0.6 96 2/27/2026
1.0.5 87 2/27/2026
1.0.4 94 2/23/2026
1.0.3 87 2/23/2026
1.0.2 91 2/22/2026
1.0.1 88 2/22/2026
1.0.0 92 2/22/2026