ExpanderView.xaml 687 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="PRS.Mobile.ExpanderView">
  5. <ContentView.Content>
  6. <ScrollView
  7. x:Name="Scroll"
  8. BackgroundColor="Transparent"
  9. VerticalOptions="Start"
  10. Orientation="Horizontal"
  11. HorizontalOptions="Fill">
  12. <StackLayout
  13. x:Name="Stack"
  14. BackgroundColor="Transparent"
  15. Orientation="Horizontal">
  16. </StackLayout>
  17. </ScrollView>
  18. </ContentView.Content>
  19. </ContentView>