You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When individual results are selected and the result list view is being displayed, UWP and WPF native implementations show the result with a distinct style.
The current Xamarin.Forms implementation doesn't visually identify the selected item, aside from the callout display.
Resolving this issue requires two changes:
Update PART_ResultView_ItemSelected to only set the selected item to null if EnableIndividualResultDisplay is false, or there is only a single result.
Create a custom viewcell and viewcell renderer (with implementations for iOS, Android, and UWP) that supports a selection color. The default ViewCell implementation works well with selection on UWP, but isn't visually distinguishable on iOS.
The text was updated successfully, but these errors were encountered:
When individual results are selected and the result list view is being displayed, UWP and WPF native implementations show the result with a distinct style.
The current Xamarin.Forms implementation doesn't visually identify the selected item, aside from the callout display.
Resolving this issue requires two changes:
PART_ResultView_ItemSelected
to only set the selected item to null ifEnableIndividualResultDisplay
is false, or there is only a single result.The text was updated successfully, but these errors were encountered: