2022-09-16 11:19:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2024-04-09 12:53:23 +02:00
|
|
|
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
|
|
|
|
x:Class="ShareeBike.View.CopriWebView.ManageAccountPage">
|
2022-04-10 17:38:34 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
<Shell.TitleView>
|
|
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
|
|
<Label Style="{StaticResource Label-Navbar}"
|
2023-08-31 12:20:06 +02:00
|
|
|
Text="{x:Static resources:AppResources.MarkingAccountPageManagePersonalData}"/>
|
2022-09-16 11:19:46 +02:00
|
|
|
</Grid>
|
|
|
|
</Shell.TitleView>
|
|
|
|
|
|
|
|
<Shell.BackButtonBehavior>
|
|
|
|
<BackButtonBehavior IconOverride="{FontImage FontFamily=FA-S, Glyph={StaticResource IconClose}, Color=White, Size=16}" />
|
|
|
|
</Shell.BackButtonBehavior>
|
2024-04-09 12:53:23 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
<ContentPage.Content>
|
2024-04-09 12:53:23 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
Grid.Row="0"
|
|
|
|
x:Name="ManageAccount"
|
|
|
|
HeightRequest="1400"
|
|
|
|
WidthRequest="1000"
|
|
|
|
Source="{Binding Uri}" />
|
2024-04-09 12:53:23 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
<ActivityIndicator Grid.Row="0"
|
|
|
|
Scale="2"
|
|
|
|
VerticalOptions="CenterAndExpand"
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
2024-04-09 12:53:23 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
</Grid>
|
2024-04-09 12:53:23 +02:00
|
|
|
|
2022-09-16 11:19:46 +02:00
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|