sharee.bike-App/LastenradBayern/TINK/View/WhatsNew/Gtc/GtcPage.xaml

22 lines
741 B
Plaintext
Raw Normal View History

2023-11-21 15:26:57 +01:00
<?xml version="1.0" encoding="utf-8" ?>
2021-05-13 20:16:41 +02:00
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2023-11-21 15:26:57 +01:00
x:Class="TINK.View.WhatsNew.Gtc.GtcPage">
2021-05-13 20:16:41 +02:00
<ContentPage.Content>
<Frame>
<StackLayout>
<WebView
HeightRequest="1000"
WidthRequest="500"
2023-11-21 15:26:57 +01:00
Source="{Binding GtcHtml}"/>
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>
2023-11-21 15:26:57 +01:00
</ContentPage>