https://github.com/tbertuzzi/bertuzzi.maui.maskedentry
:pencil: Use mask in your Xamarin.Forms apps
https://github.com/tbertuzzi/bertuzzi.maui.maskedentry
masked maskedinput maui maui-apps
Last synced: about 1 month ago
JSON representation
:pencil: Use mask in your Xamarin.Forms apps
- Host: GitHub
- URL: https://github.com/tbertuzzi/bertuzzi.maui.maskedentry
- Owner: TBertuzzi
- Created: 2022-08-18T13:41:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-19T13:43:28.000Z (almost 3 years ago)
- Last Synced: 2025-04-21T17:23:44.878Z (about 1 month ago)
- Topics: masked, maskedinput, maui, maui-apps
- Language: C#
- Homepage:
- Size: 153 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bertuzzi.MAUI.MaskedEntry
Use mask in your MAUI apps
When we need to use masks in MAUI we end up customizing a control or using behaviors.
MaskedEntry is a custom entry to use any type of mask. just use X between the sequence of characters you want to configure.
X can be used both to demonstrate where values should be in the masks, and to limit the amount of characters in a field.
###### This is the component, works on iOS, Android and UWP.
**NuGet**
|Name|Info|
| ------------------- | :------------------: |
|Bertuzzi.MAUI.MaskedEntry|[](https://www.nuget.org/packages/Bertuzzi.MAUI.MaskedEntry/)|**Platform Support**
Bertuzzi.MAUI.MaskedEntry is a MAUI library.
## Setup / Usage
Does not require additional configuration. Just install the package in the shared project and use.
You just need to add the reference in your xaml file.
```csharp
xmlns:control="clr-namespace:Bertuzzi.MAUI.MaskedEntry;Bertuzzi.MAUI.MaskedEntry"
```**Sample**
```csharp
```The complete example can be downloaded here:
Based on my package : https://github.com/TBertuzzi/Xamarin.Forms.MaskedEntry