| 123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8"?>
- <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
-
- x:Class="comal.timesheets.Purchases"
- >
- <timesheets:BasePage.PageContent>
- <StackLayout>
- <StackLayout x:Name="Cards" Margin="10"/>
- <material:MaterialButton x:Name="NewPurch" Margin="10,0,10,10" Text="New Purchase" Clicked="NewPurchase_Clicked" IsVisible="False" />
- </StackLayout>
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|