Add simple items to Maui ListView

Issue I’m trying to feed a simple list of items to a ListView (other Android platforms make this OH SO MUCH less effort). So, I have this markup: <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MauiApp1.NewPage1" Title="NewPage1"> <ScrollView> <VerticalStackLayout> <Label Text="Welcome to .NET MAUI!"

Continue reading