| 123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <ContentView
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:local="clr-namespace:InABox.Mobile"
- xmlns:system="clr-namespace:System;assembly=netstandard"
- x:Class="InABox.Mobile.MobileList"
- BackgroundColor="Transparent"
- x:DataType="local:MobileList">
-
- <ContentView.Content>
- <RefreshView
- x:Name="_refresher"
- BackgroundColor="Transparent">
- <CollectionView
- x:Name="_list"
- BackgroundColor="Transparent"
- ItemSizingStrategy="{Binding HasUnevenRows}"
- SelectionMode="None"
- HeightRequest="0">
- <CollectionView.ItemsLayout>
- <LinearItemsLayout ItemSpacing="{Binding Spacing}" Orientation="Vertical" />
- </CollectionView.ItemsLayout>
- </CollectionView>
- </RefreshView>
- </ContentView.Content>
- </ContentView>
|