sharee.bike-App/TINK/TINK/View/BikesAtStation/BikesAtStationPage.xaml

125 lines
3.2 KiB
Plaintext
Raw Normal View History

2022-09-16 11:19:46 +02: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.BikesAtStation.BikesAtStationPage"
xmlns:local_bike="clr-namespace:TINK.View.Bike"
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
2022-09-22 20:58:30 +02:00
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View"
Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="{Binding IsIdle}">
2022-09-16 11:19:46 +02:00
<Shell.TitleView>
<Grid ColumnDefinitions="Auto, 1*">
<Label Style="{StaticResource Label-Navbar}"
Text="{Binding Title}"/>
</Grid>
</Shell.TitleView>
<ContentPage.Resources>
<ResourceDictionary>
<local_bike:BikeViewCellTemplateSelector x:Key="bikeTemplateSelector"/>
</ResourceDictionary>
</ContentPage.Resources>
2022-12-07 16:54:52 +01:00
2022-09-16 11:19:46 +02:00
<ContentPage.Content>
2022-12-07 16:54:52 +01:00
<!--Grid for Bike(s) view and Running process in same row-->
<Grid>
<Frame
Grid.Row="0">
<!-- Grid for Content -->
<Grid
RowDefinitions="Auto,1*,Auto,Auto">
<!--Station-->
<StackLayout
Grid.Row="0"
Orientation="Vertical">
<!--Title-->
<Label
HorizontalOptions="Center"
FontAttributes="Bold"
TextColor="{DynamicResource primary-back-title-color}"
Text="{Binding StationDetailText}"/>
<!--Line-->
<BoxView
HeightRequest="1"
Color="{DynamicResource primary-back-title-color}"/>
</StackLayout>
<!--Bike(s)-->
<ListView Grid.Row="1"
2022-09-16 11:19:46 +02:00
x:Name="BikesAtStationListView"
SelectionMode="None"
SelectedItem="{Binding SelectedBike}"
IsEnabled="{Binding IsIdle}"
IsVisible="{Binding IsBikesListVisible}"
HasUnevenRows="True"
ItemTemplate="{StaticResource bikeTemplateSelector}"/>
<!--No Bikes-->
2022-12-07 16:54:52 +01:00
<Label Grid.Row="1"
2022-09-16 11:19:46 +02:00
IsVisible="{Binding IsNoBikesAtStationVisible}"
Text="{Binding NoBikesAtStationText}"/>
2022-12-07 16:54:52 +01:00
<!--Info text-->
<Label
Grid.Row="2"
Text="{Binding StatusInfoText}"
IsVisible="{Binding Path=IsRunning, Converter={StaticResource InvertedBoolConverter}}"
FontSize="Small"
HorizontalOptions="CenterAndExpand"
VerticalOptions="CenterAndExpand"/>
<!-- Contact and Login at end of page-->
<StackLayout
Grid.Row="3"
Orientation="Vertical">
2022-09-16 11:19:46 +02:00
2022-12-07 16:54:52 +01:00
<!--Line-->
<BoxView
HeightRequest="1"
Color="{DynamicResource primary-back-title-color}"/>
2022-09-16 11:19:46 +02:00
2022-12-07 16:54:52 +01:00
<!--Contact to operator-->
<Label
2022-09-16 11:19:46 +02:00
TextType="Html"
Text="{Binding ContactSupportHintText}">
2022-12-07 16:54:52 +01:00
<Label.GestureRecognizers>
<TapGestureRecognizer Command="{Binding ContactSupportClickedCommand}"/>
</Label.GestureRecognizers>
</Label>
2022-09-16 11:19:46 +02:00
2022-12-07 16:54:52 +01:00
<!--Login required-->
<Label
2022-09-16 11:19:46 +02:00
IsVisible="{Binding IsLoginRequiredHintVisible}"
TextType="Html"
Text="{Binding LoginRequiredHintText}">
2022-12-07 16:54:52 +01:00
<Label.GestureRecognizers>
<TapGestureRecognizer Command="{Binding LoginRequiredHintClickedCommand}"/>
</Label.GestureRecognizers>
</Label>
</StackLayout>
</Grid>
</Frame>
<!--While process is running-->
<sharedGui:RunningProcessView
2022-09-16 11:19:46 +02:00
IsVisible="{Binding IsRunning}"
2022-12-07 16:54:52 +01:00
Grid.Row="0"/>
</Grid>
2022-09-16 11:19:46 +02:00
</ContentPage.Content>
2022-12-07 16:54:52 +01:00
2022-09-16 11:19:46 +02:00
</ContentPage>