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"
|
2024-04-09 12:53:23 +02:00
|
|
|
x:Class="ShareeBike.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>
|