12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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">
- <Grid>
- <CollectionView
- x:Name="_list"
- BackgroundColor="Transparent"
- ItemSizingStrategy="{Binding HasUnevenRows}"
- SelectionMode="None"
- HeightRequest="0"
- IsVisible="False">
- <CollectionView.ItemsLayout>
- <LinearItemsLayout ItemSpacing="{Binding Spacing}" Orientation="Vertical" />
- </CollectionView.ItemsLayout>
- </CollectionView>
-
- <ui:MaterialLabel
- x:Name="_nodata"
- Grid.Row="0"
- Text="No Data Available"
- IsVisible="True"
- VerticalOptions="CenterAndExpand"
- VerticalTextAlignment="Center"
- HorizontalOptions="CenterAndExpand"
- HorizontalTextAlignment="Center"
- TypeScale="H6"/>
- </Grid>
- </RefreshView>
- </ContentView.Content>
- </ContentView>
|