The following worked for me until I tried to upgrade to .Net Standard 1.4:
<ListView x:Name="AccessTypeLV" SeparatorVisibility="None" HasUnevenRows="True" >
<x:Arguments>
<ListViewCachingStrategy>
<OnPlatform x:TypeArguments="ListViewCachingStrategy" iOS="RetainElement" Android="RecycleElement"/>
</ListViewCachingStrategy>
</x:Arguments> ...
Now I get the aforementioned error for every occurrence of ListViewCachingStrategy. What would cause this to not work?
Thanks!