sharee.bike-App/TINK/TINK/View/WhatsNew/Agb/AgbPage.xaml

21 lines
743 B
Plaintext
Raw Normal View History

2021-05-13 20:16:41 +02:00
<?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}"/>
2022-08-30 15:42:25 +02:00
<Button
Text="OK"
WidthRequest="100"
Command="{Binding OnOk}"
Margin="0,0,0,3"/>
2021-05-13 20:16:41 +02:00
</StackLayout>
</Frame>
</ContentPage.Content>
</ContentPage>