mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
52 lines
1.8 KiB
Text
52 lines
1.8 KiB
Text
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="TINK.View.Info.TabbedPageInfo"
|
||
|
x:Name="TabbedInfoPage">
|
||
|
<!--Pages can be added as references or inline-->
|
||
|
<ContentPage Title="App">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<WebView
|
||
|
x:Name="InfoLicenses"
|
||
|
Source="{Binding InfoLicenses}"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000" />
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
<ContentPage Title="Datenschutz">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<WebView
|
||
|
x:Name="InfoDatenschutz"
|
||
|
Source="{Binding InfoPrivacy}"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000" />
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
<ContentPage Title="AGB">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<WebView
|
||
|
x:Name="InfoABG"
|
||
|
Source ="{Binding InfoAgb}"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000" />
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
<ContentPage Title="Impressum">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<WebView
|
||
|
x:Name="InfoImpressum"
|
||
|
Source="{Binding InfoImpressum}"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000" />
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
</TabbedPage>
|
||
|
|