Xamarin Forms Controls and Effects, WebView with Headres, Basic Authentication, Borderless Entry, Borderless Editor, Entry with Toolbar Effects, Snackbar
Please refer to Sample app for usage.
- iOS 10+
- Android 9+
Install the package to Xamarin.Forms, Android and iOS project
Install-Package Plugin.XF.Controls
1. Custom Header Support
2. Basic Authentication Support
1. Single / Multiple custom uibarbuttonitem in keyboard view
<Entry HorizontalTextAlignment="Start" Text="This is entry with multi action" BackgroundColor="Blue">
<Entry.Effects>
<effects:EntryWithToolbarEffect>
<effects:EntryWithToolbarEffect.ActionButtons>
<effects:ActionButton Parameter="Please bind to object" Title="Action 1" Clicked="ActionButton1_Clicked" BarButtonItemStyle="Plain" DismissKeyboard="False" FlexibleSpaceBehind="False"/>
<effects:ActionButton Parameter="Please bind to object" Title="Action 2" Clicked="ActionButton2_Clicked" BarButtonItemStyle="Plain" DismissKeyboard="False" FlexibleSpaceBehind="True"/>
<effects:ActionButton Title="Done" BarButtonItemStyle="Done" FlexibleSpaceBehind="False"/>
</effects:EntryWithToolbarEffect.ActionButtons>
</effects:EntryWithToolbarEffect>
</Entry.Effects>
</Entry>
Single | Multiple |
1. Custom annotation on Entry
2. Support Xamarin Form Material
To set in it runtime.
AnnotatedEntry.SetAnnotation(bool isShow, string text, Color textColor);
AnnotatedEntry.HideAnnotation()
Plugin.XF.Controls.Services.DialogService.ShowSnackbar(randomMessage, 3, Color.White, Color.Blue, 0.75f, "OK", Color.Yellow, null);
Android | iOS |