2021-11-07 19:42:59 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
|
|
x:Class="TINK.View.Contact.FeesAndBikesPage">
|
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.MarkingFeesAndBikes}"/>
|
|
|
|
</Grid>
|
|
|
|
</Shell.TitleView>
|
2021-11-07 19:42:59 +01:00
|
|
|
<!--Pages can be added as references or inline-->
|
2022-10-03 17:55:10 +02:00
|
|
|
<ContentPage
|
2022-10-04 19:14:42 +02:00
|
|
|
IsEnabled="{Binding IsIdle}"
|
2022-10-12 21:02:34 +02:00
|
|
|
Title="{x:Static resources:AppResources.MarkingTabBikes}">
|
2021-11-07 19:42:59 +01:00
|
|
|
<ContentPage.Content>
|
2022-10-03 17:55:10 +02:00
|
|
|
<Grid>
|
2021-11-07 19:42:59 +01:00
|
|
|
<WebView
|
2022-10-12 21:02:34 +02:00
|
|
|
x:Name="InfoTypesOfBikesWebView"
|
2022-10-03 17:55:10 +02:00
|
|
|
HeightRequest="1000"
|
|
|
|
WidthRequest="1000"
|
2022-10-12 21:02:34 +02:00
|
|
|
Source="{Binding TypesOfBikesText}"/>
|
2022-10-03 17:55:10 +02:00
|
|
|
<ActivityIndicator Grid.Row="0"
|
|
|
|
IsRunning="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
|
|
|
IsVisible="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
|
|
|
Scale="2"
|
|
|
|
VerticalOptions="CenterAndExpand"
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
|
|
</Grid>
|
2021-11-07 19:42:59 +01:00
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|
2022-10-12 21:02:34 +02:00
|
|
|
<ContentPage
|
2022-10-04 19:14:42 +02:00
|
|
|
IsEnabled="{Binding IsIdle}"
|
2022-10-12 21:02:34 +02:00
|
|
|
Title="{x:Static resources:AppResources.MarkingTabFees}">
|
|
|
|
<ContentPage.Content>
|
2022-10-03 17:55:10 +02:00
|
|
|
<Grid>
|
2022-10-12 21:02:34 +02:00
|
|
|
<WebView
|
|
|
|
x:Name="InfoRentBikeWebView"
|
2022-10-03 17:55:10 +02:00
|
|
|
HeightRequest="1000"
|
|
|
|
WidthRequest="1000"
|
2022-10-12 21:02:34 +02:00
|
|
|
Source="{Binding RentBikeText}"/>
|
2022-10-03 17:55:10 +02:00
|
|
|
<ActivityIndicator Grid.Row="0"
|
|
|
|
IsRunning="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
|
|
|
IsVisible="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
|
|
|
Scale="2"
|
|
|
|
VerticalOptions="CenterAndExpand"
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
|
|
</Grid>
|
2022-10-12 21:02:34 +02:00
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|
2022-10-03 17:55:10 +02:00
|
|
|
</TabbedPage>
|