2023-02-22 14:03:35 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2024-04-09 12:53:23 +02:00
|
|
|
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
|
|
|
|
x:Class="SharedGui.View.HintForRefreshingPageView">
|
2023-02-22 14:03:35 +01:00
|
|
|
|
|
|
|
<StackLayout
|
|
|
|
Orientation="Horizontal"
|
|
|
|
HorizontalOptions="CenterAndExpand"
|
|
|
|
IsVisible="{Binding IsBikesDataOutdatedLabelVisible}"
|
|
|
|
Padding="0"
|
|
|
|
Spacing="0"
|
|
|
|
Margin="0">
|
|
|
|
|
|
|
|
<StackLayout.Triggers>
|
|
|
|
<DataTrigger TargetType="StackLayout"
|
|
|
|
Binding="{Binding IsBikesDataOutdatedLabelVisible}"
|
|
|
|
Value="false">
|
|
|
|
<Setter Property="HeightRequest" Value="0" />
|
|
|
|
</DataTrigger>
|
|
|
|
</StackLayout.Triggers>
|
|
|
|
|
|
|
|
<Image>
|
|
|
|
<Image.Source>
|
|
|
|
<FontImageSource
|
|
|
|
Glyph="{StaticResource ArrowDown}"
|
|
|
|
Color="DimGray"
|
|
|
|
FontFamily="FA-S"
|
|
|
|
Size="Small"/>
|
|
|
|
</Image.Source>
|
|
|
|
</Image>
|
|
|
|
|
|
|
|
<Label
|
|
|
|
TextColor="DimGray"
|
|
|
|
FontSize="Small"
|
|
|
|
Padding="5"
|
|
|
|
Text="{x:Static resources:AppResources.MarkingDataIsFromCache}"/>
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
</ContentView>
|