mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
18 lines
642 B
Text
18 lines
642 B
Text
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="TINK.View.WhatsNew.Agb.AgbPage">
|
||
|
<ContentPage.Content>
|
||
|
<Frame>
|
||
|
<StackLayout>
|
||
|
<WebView
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="500"
|
||
|
Source="{Binding InfoAgb}"/>
|
||
|
<Button Text="OK"
|
||
|
Command="{Binding OnOk}"/>
|
||
|
</StackLayout>
|
||
|
</Frame>
|
||
|
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|