When item is selected I get a blue highlight that it is selected. The cell is a navigation button and when i navigate back to the page, the item still appears selected. How do I de-select programatically when leaving the page or returning to it? or in XAML. Here is my XAML. Both SelectionMode="SingleDeselect" and SelectionMode="Single" keep the item appearing as selected. (Also how do i change the color of the selected cell? )
``` <sync:SfListView x:Name="mylistView" Margin="0,10" FocusBorderThickness="0" SelectionMode="SingleDeselect"
ItemSpacing="10"
ItemsSource="{Binding MainMenuItems}" ItemTapped="ListViewOnItemTapped"
ItemSize="{OnPlatform Default=400, Android={OnIdiom Phone=170,Tablet=190},
iOS={OnIdiom Phone=170,Tablet=190}}">```