Hello,
Welcome to Microsoft Q&A!
Try to set InputTypes as TextVariationVisiblePassword
, it works fine on my side .
[assembly : ExportRenderer(typeof(Entry),typeof(MyRenderer))]
namespace FormsApp.Droid
{
class MyRenderer : EntryRenderer
{
public MyRenderer(Context context):base(context)
{
}
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
{
base.OnElementChanged(e);
if(Control != null)
{
Control.InputType = Android.Text.InputTypes.TextVariationVisiblePassword;
}
}
}
}
Thank you.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.