| 12345678910111213141516171819202122232425262728 |
- <?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"
- x:Class="InABox.Mobile.MobileList"
- BackgroundColor="Transparent">
-
- <ContentView.Content>
- <RefreshView
- x:Name="_refresher"
- BackgroundColor="Transparent">
- <ScrollView>
- <StackLayout
- x:Name="_list"
- Orientation="Vertical"
- BackgroundColor="Transparent">
- <StackLayout.GestureRecognizers>
- <TapGestureRecognizer Tapped="Cell_OnTapped" />
- </StackLayout.GestureRecognizers>
- </StackLayout>
- </ScrollView>
- </RefreshView>
- </ContentView.Content>
- </ContentView>
|