How can a visual highlight be shown on the last tapped item after navigation while keeping the item tappable again?

Platform: .NET MAUI| Category: Collection View

To show a visual highlight, use an item-level ViewModel flag (such as IsHighlighted) and bind it to a VisualState. Do not rely on SelectedItem, because selection disables immediate retapping. Clear selection and let the flag control the highlight.

Share with