https://github.com/flokri/xamarin.forms.customcontrols
Different custom controls for Xamarin.Forms!
https://github.com/flokri/xamarin.forms.customcontrols
xamarin xamarin-forms xamarin-forms-control
Last synced: about 2 months ago
JSON representation
Different custom controls for Xamarin.Forms!
- Host: GitHub
- URL: https://github.com/flokri/xamarin.forms.customcontrols
- Owner: Flokri
- License: mit
- Created: 2019-03-20T16:54:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-07T12:56:32.000Z (about 2 years ago)
- Last Synced: 2025-04-12T06:05:02.792Z (about 2 months ago)
- Topics: xamarin, xamarin-forms, xamarin-forms-control
- Language: C#
- Homepage:
- Size: 1.4 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Xamarin.Forms.CustomControls
Different custom controls for Xamarin.Forms.[](https://dev.azure.com/flokri/Xamarin.Forms.CustomControls/_build/latest?definitionId=2&branchName=release) [](https://nuget.org/packages/Xamarin.Forms.CustomControls)
## What controls are available?
Currently available controls are:
- Entries:
- Animated Border Entry
- Floating Entry
- Material Entry
- Confirmation Entry
- Borderless Entry
## How to use?
The project is available on nuget.org (https://www.nuget.org/packages/Xamarin.Forms.CustomControls) or you just simly clone the repo and use reference to the project inside the src folder.To use a custom control inside your xaml code you just need to add a reference to the correct CustomControl package/project.
The namespace is seperated into the different control types.For example, you want to use a custom entry just add this to your xaml:
```
...
```
Next, simply take a custom control and customize it to your liking!
```
```
Note you have to add a reference to the behavior if you want the build in email behavior. You could also use your own behaviors!
```
xmlns:behaviors="clr-namespace:Xamarin.Forms.CustomControls.Behaviors;assembly=Xamarin.Forms.CustomControls"
```