Hello,
Welcome to our Microsoft Q&A platform!
The focused style seems to be delayed when navigating to another page. Try to call the Unfocus command before the navigation. Check the code:
<Entry x:Name="entry" Focused="Entry_Focused"/>
Entry_Focused event
private async void Entry_Focused(object sender, FocusEventArgs e)
{
entry.Unfocus();
await Navigation.PushAsync(new TestPage());
}
Best Regards,
Jarvan Zhang
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.