mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
47 lines
No EOL
2.3 KiB
XML
47 lines
No EOL
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<CarouselPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TINK.View.Info.BikeInfo.BikeInfoCarouselPage">
|
|
<CarouselPage.ItemTemplate>
|
|
<DataTemplate>
|
|
<ContentPage>
|
|
<ContentPage.Padding>
|
|
<OnPlatform x:TypeArguments="Thickness">
|
|
<On Platform="iOS" Value="0,40,0,0" />
|
|
</OnPlatform>
|
|
</ContentPage.Padding>
|
|
<ScrollView Orientation="Vertical">
|
|
<StackLayout>
|
|
<Label
|
|
Text="{Binding Title}"
|
|
FontSize="Medium"
|
|
HorizontalOptions="Center"
|
|
HorizontalTextAlignment="Center"
|
|
VerticalOptions="EndAndExpand"
|
|
VerticalTextAlignment="End"/>
|
|
<Image
|
|
IsVisible="{Binding IsImageVisble}"
|
|
Source="{Binding Image}"
|
|
Aspect="AspectFit"
|
|
HorizontalOptions="FillAndExpand"
|
|
VerticalOptions="FillAndExpand"/>
|
|
<Label
|
|
Text="{Binding DescriptionText}"
|
|
HorizontalOptions="Center"
|
|
HorizontalTextAlignment="Center"
|
|
VerticalOptions="StartAndExpand"
|
|
VerticalTextAlignment="Start"/>
|
|
<Button
|
|
Text="Schließen"
|
|
IsVisible="{Binding IsCloseVisible}"
|
|
Command="{Binding OnCloseRequest}"
|
|
VerticalOptions="End"/>
|
|
<ProgressBar
|
|
VerticalOptions="End"
|
|
Progress="{Binding ProgressValue}"/>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</ContentPage>
|
|
</DataTemplate>
|
|
</CarouselPage.ItemTemplate>
|
|
</CarouselPage> |