15 lines
616 B
XML
15 lines
616 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ui:BillingPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:ui="clr-namespace:Billing.UI"
|
|
xmlns:v="clr-namespace:Billing.Views"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Billing.Views.AddBillPage"
|
|
x:DataType="v:AddBillPage"
|
|
Title="Add Billing">
|
|
|
|
<StackLayout>
|
|
<Label Text="Add a billing here..."
|
|
VerticalOptions="CenterAndExpand"
|
|
HorizontalOptions="CenterAndExpand" />
|
|
</StackLayout>
|
|
</ui:BillingPage> |