I'm trying to attach an automationId to items within a listview. Ideally by binding a project name to the item that is shown.
<ListView
ItemsSource="{Binding Projects}"
AutomationId="{Binding Projects}
HasUnevenRows="True"
IsPullToRefreshEnabled="true"
CachingStrategy="RecycleElement"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
The code is deploying but not running when I get to the page, has anyone found a good workaround to bind the ID like that?
Long term, I want to use it with the Xamarin Forms ability to scroll which can scroll to a marked item, but not scroll to a displayed text. If there is a way to scroll to a text displayed, that would be helpful but not something I've found documentation on yet.