mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
21 lines
No EOL
743 B
XML
21 lines
No EOL
743 B
XML
<?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"
|
|
WidthRequest="100"
|
|
Command="{Binding OnOk}"
|
|
Margin="0,0,0,3"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
|
|
</ContentPage.Content>
|
|
</ContentPage> |