An open API service indexing awesome lists of open source software.

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!

Awesome Lists containing this project

README

        

# Xamarin.Forms.CustomControls
Different custom controls for Xamarin.Forms.

[![Build Status](https://dev.azure.com/flokri/Xamarin.Forms.CustomControls/_apis/build/status/CD%20CustomControls%20YAML?branchName=release&stageName=Publish%20Release%20NuGet%20Package)](https://dev.azure.com/flokri/Xamarin.Forms.CustomControls/_build/latest?definitionId=2&branchName=release) [![](https://img.shields.io/nuget/vpre/Xamarin.Forms.CustomControls.svg)](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"
```