My ListView does not display content

-2

I do not see the Label text that is in ListView , I already use StackLayout and nothing, what could it be?

    
asked by anonymous 10.10.2018 / 16:28

1 answer

1

The ListView is a component for displaying list of data on the screen. For this you must define a data source to populate the ListView as a List (List), Vector (Array), or any IEnumerable.

In your case you are not passing any data source to your ListView display.

ListView documentation: link

    
11.10.2018 / 15:28