handlers.AddHandler(typeof(Telerik.Maui.Controls.RadEntry), typeof(RadEntryCustomHandler));
for ANDROID I have this Handler
public partial class RadEntryCustomHandler : RadEntryHandler
{
protected override void ConnectHandler(RadMauiEntry nativeView)
{
try
{
nativeView.EditText.TextCursorDrawable.SetColorFilter(new PorterDuffColorFilter(Graphics.Color.White, PorterDuff.Mode.Darken));
}
catch { }
}
}
for IOS I have this Handler
public class RadEntryCustomHandler : RadEntryHandler{
protected override void ConnectHandler(RadMauiEntry nativeView)
{
try
{
nativeView.TextField.TintColor = UIColor.White;
}
catch { }
}
}