sharee.bike-App/Meinkonrad/TINK/View/CopriWebView/RegisterPage.xaml

35 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-09-20 13:51:55 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2021-11-07 19:42:59 +01:00
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2022-08-30 15:42:25 +02:00
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
2021-11-07 19:42:59 +01:00
x:Class="TINK.View.CopriWebView.RegisterPage">
2022-08-30 15:42:25 +02:00
<Shell.TitleView>
<Grid ColumnDefinitions="Auto, 1*">
<Image Style="{StaticResource Image-Navbar}"/>
<Label Style="{StaticResource Label-Navbar}"
Text="{x:Static resources:AppResources.ActionLoginRegister}"/>
</Grid>
</Shell.TitleView>
<Shell.BackButtonBehavior>
<BackButtonBehavior IconOverride="{FontImage FontFamily=FA-S, Glyph={StaticResource IconClose}, Color=White, Size=16}" />
</Shell.BackButtonBehavior>
2021-11-07 19:42:59 +01:00
<ContentPage.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
2022-04-10 17:38:34 +02:00
<WebView x:Name="RegisterView"
HeightRequest="1400"
WidthRequest="1000"
Source="{Binding Uri}" />
2022-09-20 13:51:55 +02:00
<ActivityIndicator Grid.Row="0"
x:Name="ActivityIndicatorLoading"
Scale="2"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"
Color="{x:DynamicResource primary-back-title-color}"/>
</Grid>
2021-11-07 19:42:59 +01:00
</ContentPage.Content>
2022-09-20 13:51:55 +02:00
</ContentPage>