mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-14 22:36:26 +01:00
132 lines
4.5 KiB
XML
132 lines
4.5 KiB
XML
<?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"
|
|
Style="{StaticResource TabbedPageStyle}">
|
|
|
|
<TabbedPage.Resources>
|
|
<x:String x:Key="IconSmartphone"></x:String>
|
|
<x:String x:Key="IconTariff"></x:String>
|
|
<x:String x:Key="IconFaq"></x:String>
|
|
</TabbedPage.Resources>
|
|
|
|
<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>
|
|
|
|
<!--Pages can be added as references or in line-->
|
|
<ContentPage
|
|
x:Name="FaqPage"
|
|
IsEnabled="{Binding IsIdle}"
|
|
Title="FAQ">
|
|
<ContentPage.IconImageSource>
|
|
<FontImageSource Glyph="{StaticResource IconFaq}" FontFamily="FA-S" />
|
|
</ContentPage.IconImageSource>
|
|
<ContentPage.Content>
|
|
<Grid
|
|
RowDefinitions="Auto,*,Auto"
|
|
RowSpacing="0">
|
|
<BoxView Grid.Row="0"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<WebView Grid.Row="1"
|
|
x:Name="FAQWebView"
|
|
HeightRequest="1000"
|
|
WidthRequest="1000"
|
|
Source="{Binding FAQ}"/>
|
|
<BoxView Grid.Row="2"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<ActivityIndicator Grid.Row="0" Grid.RowSpan="3"
|
|
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>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|
|
<ContentPage
|
|
x:Name="ManualPage"
|
|
IsEnabled="{Binding IsIdle}"
|
|
Title="{x:Static resources:AppResources.MarkingTabBikes}">
|
|
<ContentPage.IconImageSource>
|
|
<FontImageSource Glyph="{StaticResource IconSmartphone}" FontFamily="FA-S" />
|
|
</ContentPage.IconImageSource>
|
|
<ContentPage.Content>
|
|
<Grid
|
|
RowDefinitions="Auto,*,Auto"
|
|
RowSpacing="0">
|
|
<BoxView Grid.Row="0"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<WebView Grid.Row="1"
|
|
x:Name="InfoTypesOfBikesWebView"
|
|
HeightRequest="1000"
|
|
WidthRequest="1000"
|
|
Source="{Binding TypesOfBikesText}"/>
|
|
<BoxView Grid.Row="2"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<ActivityIndicator Grid.Row="0" Grid.RowSpan="3"
|
|
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>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|
|
<ContentPage
|
|
x:Name="TariffPage"
|
|
IsEnabled="{Binding IsIdle}"
|
|
Title="{x:Static resources:AppResources.MarkingTabFees}">
|
|
<ContentPage.IconImageSource>
|
|
<FontImageSource Glyph="{StaticResource IconTariff}" FontFamily="FA-S" />
|
|
</ContentPage.IconImageSource>
|
|
<ContentPage.Content>
|
|
<Grid
|
|
RowDefinitions="Auto,*,Auto"
|
|
RowSpacing="0">
|
|
<BoxView Grid.Row="0"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<WebView Grid.Row="1"
|
|
x:Name="InfoRentBikeWebView"
|
|
HeightRequest="1000"
|
|
WidthRequest="1000"
|
|
Source="{Binding RentBikeText}"/>
|
|
<BoxView Grid.Row="2"
|
|
HeightRequest="1"
|
|
WidthRequest="400"
|
|
HorizontalOptions="Center"
|
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
|
<ActivityIndicator Grid.Row="0" Grid.RowSpan="3"
|
|
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>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|
|
</TabbedPage>
|