mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
42 lines
No EOL
2 KiB
XML
42 lines
No EOL
2 KiB
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.WhatsNewPage">
|
|
<ContentPage.Content>
|
|
<ScrollView>
|
|
<Frame>
|
|
<StackLayout>
|
|
<Label Text="{Binding WhatsNewTitle}"
|
|
FontSize="Large"
|
|
VerticalOptions="Start"
|
|
HorizontalOptions="CenterAndExpand" />
|
|
<Frame>
|
|
<StackLayout>
|
|
<Label
|
|
Text="{Binding WhatsNewText}"
|
|
TextType="Html"/>
|
|
<Label FormattedText="{Binding AgbChangedText}"
|
|
IsVisible="{Binding IsAgbChangedVisible}">
|
|
<Label.GestureRecognizers>
|
|
<TapGestureRecognizer Command="{Binding OnShowAgbTapped}"/>
|
|
</Label.GestureRecognizers>
|
|
</Label>
|
|
</StackLayout>
|
|
</Frame>
|
|
<Frame IsVisible="{Binding IsFeedbackVisible}">
|
|
<StackLayout>
|
|
<Label Text="Gibts Verbesserungsvorschläge/ Probleme mit der App?"/>
|
|
<Button Text="Verbesserungsmail schreiben"/>
|
|
<Label Text="Die App läuft rund und tut was sie soll? Über eine Bewertung würden wir uns sehr freuen!"/>
|
|
<Button Text="Bewertung abgeben"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
|
|
<Button
|
|
Text="OK"
|
|
Command="{Binding OnOk}"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
</ScrollView>
|
|
</ContentPage.Content>
|
|
</ContentPage> |