MAUI password field broke after Android update

Issue I have a MAUI app with a simple screen like this: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="gfMobile.MainPage"> <ScrollView> <VerticalStackLayout Spacing="25" Padding="30,0" VerticalOptions="Center"> <Label Text="Enter password" SemanticProperties.HeadingLevel="Level2" FontSize="18" HorizontalOptions="Center" /> <Entry IsPassword="true" x:Name="password" Text="" SemanticProperties.HeadingLevel="Level2" SemanticProperties.Description="" FontSize="18" HorizontalOptions="Center"

Continue reading