I'm really struggling with the whole idea of a viewmodel and binding to a listview row.
I want to pull data from my sqlite table, and use just one of the fields from the sqlite table for my text label bound in my listview.
Can someone give me a working example of a binding in a listview pulling just one column from a sqlite table and putting each field on a single row label in the listview?
<listView:ListViewTemplateCell>
<StackLayout BackgroundColor="Bisque" Padding="5" Spacing="5">
<Label Text="{Binding Category}" TextColor="Black" />
</StackLayout>
</listView:ListViewTemplateCell>
How to make a query put each item into that label for rows in my listview?