| 123456789101112131415161718192021 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 
- <ContentView xmlns="http://xamarin.com/schemas/2014/forms" 
 
-              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
 
-              x:Class="comal.timesheets.MultiImageCapture">
 
-   <ContentView.Content>
 
-         <StackLayout Orientation="Vertical">
 
-             <Label x:Name="addDeleteLbl" Text="Add photo(s) below:" HorizontalOptions="Center" VerticalOptions="Center"/>
 
-             <ScrollView Orientation="Horizontal" x:Name="ImageScroller">
 
-                 <StackLayout x:Name="imagesStackLayout" Orientation="Horizontal" HeightRequest="150" HorizontalOptions="StartAndExpand" VerticalOptions="Fill"/>
 
-             </ScrollView>
 
-             <Grid>
 
-                 <Grid.ColumnDefinitions>
 
-                     <ColumnDefinition Width="*"/>
 
-                     <ColumnDefinition Width="*"/>
 
-                 </Grid.ColumnDefinitions>
 
-                 <Button x:Name="TakePhoto" Grid.Column="0" Text="Camera" Clicked="TakePhoto_Clicked" Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold"/>
 
-                 <Button x:Name="ChooseImage" Grid.Column="1" Text="Library" Clicked="ChooseImage_Clicked" Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold"/>
 
-             </Grid>
 
-         </StackLayout>
 
-     </ContentView.Content>
 
- </ContentView>
 
 
  |