Hi,
i have problem with autocomplete view, Unfocuse is not fired (after focusing and unfocusing) on android, its working properly for UWP. Could you please have a look? Also there is possibility to change Color of focus pointer
this is my code
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:telerikPrimitives="http://schemas.telerik.com/2022/xaml/maui"
x:Class="LoyHutz.Maui.Pages.Test"
Title="Test">
<VerticalStackLayout>
<Label
Text="Welcome to .NET MAUI!"
VerticalOptions="Center"
HorizontalOptions="Center" />
<telerikPrimitives:RadAutoComplete x:Name="Autocomplete" BackgroundColor="Grey"
VerticalOptions="Center"
BorderColor="Transparent"
BorderThickness="0"
NoResultsMessage=""
TextSearchPath=""
Focused="Autocomplete_Focused" Unfocused="Autocomplete_Unfocused"
TextChanged="Autocomplete_TextChanged"/>
</VerticalStackLayout>
</ContentPage>
Thanks in advance