sharee.bike-App/LastenradBayern/TINK/View/MyBikes/MyBikesPage.xaml

64 lines
3 KiB
Plaintext
Raw Normal View History

2021-11-07 19:42:59 +01:00
<?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.MyBikes.MyBikesPage"
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
2022-08-30 15:42:25 +02:00
xmlns:local_bike="clr-namespace:TINK.View.Bike">
<Shell.TitleView>
<Grid ColumnDefinitions="Auto, 1*">
<Label Style="{StaticResource Label-Navbar}"
Text="{x:Static resources:AppResources.MarkingMyBikes}"/>
</Grid>
</Shell.TitleView>
2021-11-07 19:42:59 +01:00
<ContentPage.Resources>
<ResourceDictionary>
<local_bike:BikeViewCellTemplateSelector x:Key="bikeTemplateSelector"/>
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<Frame>
2022-01-04 18:54:03 +01:00
<StackLayout
Orientation="Vertical">
<!-- Center stack layout -->
<StackLayout
VerticalOptions="CenterAndExpand"
Orientation="Vertical">
<ListView
x:Name="MyBikesListView"
SelectionMode="None"
SelectedItem="{Binding SelectedBike}"
IsEnabled="{Binding IsIdle}"
IsVisible="{Binding IsBikesListVisible}"
HasUnevenRows="True"
ItemTemplate="{StaticResource bikeTemplateSelector}"/>
2021-11-07 19:42:59 +01:00
<Label
IsVisible="{Binding IsNoBikesOccupiedVisible}"
Text="{Binding NoBikesOccupiedText}"/>
2022-01-04 18:54:03 +01:00
</StackLayout>
<!-- Status bar stack layout-->
<StackLayout
Orientation="Horizontal">
2021-11-07 19:42:59 +01:00
<Label
2022-08-30 15:42:25 +02:00
HeightRequest="24"
2021-11-07 19:42:59 +01:00
Text="{Binding StatusInfoText}"
2022-08-30 15:42:25 +02:00
FontSize="Small"
2021-11-07 19:42:59 +01:00
VerticalOptions="Center"
HorizontalOptions="FillAndExpand"/>
<ActivityIndicator IsRunning="{Binding IsRunning}"
2022-01-04 18:54:03 +01:00
IsVisible="{Binding IsRunning}"
HeightRequest="20"
VerticalOptions="CenterAndExpand"
HorizontalOptions="End">
2021-11-07 19:42:59 +01:00
<ActivityIndicator.WidthRequest>
<OnPlatform x:TypeArguments="x:Double" iOS="40" Android="40" WinPhone="40" />
</ActivityIndicator.WidthRequest>
<ActivityIndicator.Color>
<OnPlatform x:TypeArguments="Color"
2022-08-30 15:42:25 +02:00
Android="#009BDB" iOS="#009BDB" WinPhone="#009BDB" />
2021-11-07 19:42:59 +01:00
</ActivityIndicator.Color>
</ActivityIndicator>
</StackLayout>
</StackLayout>
</Frame>
</ContentPage.Content>
</ContentPage>