I have created a new project from visual studio 2017 using syncfusion SfTextInputLayout but the EnablePasswordVisibility do not work.
The XAML of the page is ?
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App5"
xmlns:inputLayout="clr-namespace:Syncfusion.XForms.TextInputLayout;assembly=Syncfusion.Core.XForms"
x:Class="App5.MainPage">
<StackLayout>
<Entry></Entry>
<inputLayout:SfTextInputLayout
x:Name="passwordLayout"
CharMaxLength="8"
ContainerType="Filled"
EnablePasswordVisibilityToggle="true"
ErrorText="Enter 5 to 8 characters"
EnableHintAnimation="True" FocusedColor="Yellow" UnfocusedColor="Transparent" ShowHelperText="True" TrailingViewPosition="Inside"
HelperText="Enter 5 to 8 characters"
Hint="Password"
ShowCharCount="true">
<Entry
x:Name="password"
IsPassword="true" />
<inputLayout:SfTextInputLayout.LeadingView>
<Label
FontSize="18"
Text="K"
TextColor="Red"
VerticalTextAlignment="Center">
<Label.FontFamily>
<OnPlatform x:TypeArguments="x:String">
<On Platform="iOS" Value="InputLayoutIcons" />
<On Platform="Android" Value="InputLayoutIcons.ttf#InputLayoutIcons" />
<On Platform="UWP" Value="/Assets/Fonts/InputLayoutIcons.ttf#InputLayoutIcons" />
</OnPlatform>
</Label.FontFamily>
</Label>
</inputLayout:SfTextInputLayout.LeadingView>
</inputLayout:SfTextInputLayout>
</StackLayout>
</ContentPage>
Attachment:
EmulatorImage_c6f073a2.rar