mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
108 lines
2.9 KiB
XML
108 lines
2.9 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.BikesAtStation.BikesAtStationPage"
|
|
xmlns:local_bike="clr-namespace:TINK.View.Bike"
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Shell.NavBarIsVisible="{Binding IsIdle}">
|
|
|
|
<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>
|
|
|
|
<ContentPage.Content>
|
|
|
|
<Frame>
|
|
|
|
<!--Grid for Bike(s) view and Running process in same row-->
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!--Bike(s) view-->
|
|
<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"
|
|
x:Name="BikesAtStationListView"
|
|
SelectionMode="None"
|
|
SelectedItem="{Binding SelectedBike}"
|
|
IsEnabled="{Binding IsIdle}"
|
|
IsVisible="{Binding IsBikesListVisible}"
|
|
HasUnevenRows="True"
|
|
ItemTemplate="{StaticResource bikeTemplateSelector}"/>
|
|
|
|
<!--No Bikes-->
|
|
<Label
|
|
Grid.Row="1"
|
|
IsVisible="{Binding IsNoBikesAtStationVisible}"
|
|
Text="{Binding NoBikesAtStationText}"/>
|
|
|
|
<!-- Contact and Login at end of page-->
|
|
<StackLayout
|
|
Orientation="Vertical"
|
|
Grid.Row="2">
|
|
|
|
<!--Line-->
|
|
<BoxView HeightRequest="1" Color="{DynamicResource primary-back-title-color}"/>
|
|
|
|
<!--Contact to operator-->
|
|
<Label
|
|
TextType="Html"
|
|
Text="{Binding ContactSupportHintText}">
|
|
<Label.GestureRecognizers>
|
|
<TapGestureRecognizer Command="{Binding ContactSupportClickedCommand}"/>
|
|
</Label.GestureRecognizers>
|
|
</Label>
|
|
|
|
<!--Login required-->
|
|
<Label
|
|
IsVisible="{Binding IsLoginRequiredHintVisible}"
|
|
TextType="Html"
|
|
Text="{Binding LoginRequiredHintText}">
|
|
<Label.GestureRecognizers>
|
|
<TapGestureRecognizer Command="{Binding LoginRequiredHintClickedCommand}"/>
|
|
</Label.GestureRecognizers>
|
|
</Label>
|
|
</StackLayout>
|
|
|
|
<!--While process is running-->
|
|
<sharedGui:RunningProcessViewBay
|
|
IsVisible="{Binding IsRunning}"
|
|
Grid.Row="1"/>
|
|
|
|
</Grid>
|
|
|
|
</Frame>
|
|
|
|
</ContentPage.Content>
|
|
</ContentPage>
|