MobileList.xaml 968 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView
  3. xmlns="http://xamarin.com/schemas/2014/forms"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  5. xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  6. xmlns:local="clr-namespace:InABox.Mobile"
  7. x:Class="InABox.Mobile.MobileList"
  8. BackgroundColor="Transparent">
  9. <ContentView.Content>
  10. <RefreshView
  11. x:Name="_refresher"
  12. BackgroundColor="Transparent">
  13. <ScrollView>
  14. <StackLayout
  15. x:Name="_list"
  16. Orientation="Vertical"
  17. BackgroundColor="Transparent">
  18. <StackLayout.GestureRecognizers>
  19. <TapGestureRecognizer Tapped="Cell_OnTapped" />
  20. </StackLayout.GestureRecognizers>
  21. </StackLayout>
  22. </ScrollView>
  23. </RefreshView>
  24. </ContentView.Content>
  25. </ContentView>