sharee.bike-App/LastenradBayern/TINK/View/WhatsNew/WhatsNewPage.xaml
2021-11-07 19:42:59 +01:00

42 lines
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>