-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOrderConfirmPage.xaml
More file actions
35 lines (34 loc) · 1.02 KB
/
OrderConfirmPage.xaml
File metadata and controls
35 lines (34 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:customerapp;assembly=customer-app"
x:Class="customerapp.OrderConfirmPage">
<ContentPage.Content>
<StackLayout>
<local:MapWithRoute
x:Name="Map"
IsShowingUser = "true"
VerticalOptions = "FillAndExpand"
MapType="Satellite"/>
<StackLayout
Orientation="Horizontal"
HorizontalOptions="FillAndExpand">
<Button
Text = "Cancel"
FontSize = "Medium"
HorizontalOptions = "FillAndExpand"
VerticalOptions = "Center"
BackgroundColor="Gray"
TextColor="Black"
Clicked="OnCancelButtonClicked"/>
<Button
Text = "Confirm Position"
FontSize = "Medium"
HorizontalOptions = "FillAndExpand"
VerticalOptions = "Center"
Clicked="OnConfirmButtonClicked"/>
</StackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>