| 12345678910111213141516171819202122 |
- <p:ListDataPage xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:p="clr-namespace:Xamarin.Forms.Pages;assembly=Xamarin.Forms.Pages"
- x:Class="DataPages.MainView"
- StyleClass="Events"
- Title="Users">
- <p:ListDataPage.DataSource>
- <p:JsonDataSource Source="http://www.json-generator.com/api/json/get/clOPFoTImW?indent=2" />
- </p:ListDataPage.DataSource>
- <p:ListDataPage.DefaultItemTemplate>
- <DataTemplate>
- <ViewCell>
- <p:ListItemControl
- Title="{p:DataSourceBinding name}"
- Detail="{p:DataSourceBinding email}"
- ImageSource="{p:DataSourceBinding picture}"
- DataSource="{Binding Value}">
- </p:ListItemControl>
- </ViewCell>
- </DataTemplate>
- </p:ListDataPage.DefaultItemTemplate>
- </p:ListDataPage>
|