29 lines
1.7 KiB
XML
29 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<controls:BaseContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="gehGassiApp.Views.Payments.PaymentSuccessView"
|
|
xmlns:res="clr-namespace:gehGassiApp.Resources"
|
|
xmlns:controls="clr-namespace:gehGassiApp.Controls"
|
|
ControlTemplate="{StaticResource MenuPageTemplate}">
|
|
|
|
<controls:BaseContentPage.TitleView>
|
|
<controls:ShellTitleViewNoLogoControl ViewModel="{Binding .}" Initials="{Binding CurrentAppUser.Initials}" Photo="{Binding CurrentAppUser.Photo}"/>
|
|
</controls:BaseContentPage.TitleView>
|
|
|
|
<ContentPage.Content>
|
|
<ScrollView x:Name="rootScrollView" Padding="20" HorizontalOptions="Fill" VerticalOptions="FillAndExpand">
|
|
<VerticalStackLayout x:Name="rootVerticalStackLayout" SizeChanged="rootVerticalStackLayout_SizeChanged" Spacing="0" HorizontalOptions="Fill" VerticalOptions="CenterAndExpand">
|
|
|
|
<Image Source="registration_success" HorizontalOptions="CenterAndExpand" Margin="{StaticResource MarginSection}"></Image>
|
|
|
|
<Label Text="{x:Static res:Text.Common_TankYou}" Style="{StaticResource H2_Blue}" HorizontalOptions="CenterAndExpand" Margin="{StaticResource MarginVerySmall}"></Label>
|
|
|
|
<Label Text="{x:Static res:Text.Payment_Success}" Style="{StaticResource BodyM_GreyDark}" HorizontalOptions="CenterAndExpand" Margin="{StaticResource MarginBig}"></Label>
|
|
|
|
<Button Text="{x:Static res:Text.Button_ShowWalk}" Command="{Binding ShowWalkCommand}"></Button>
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage.Content>
|
|
|
|
</controls:BaseContentPage> |