mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
41 lines
1.1 KiB
XML
41 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
x:Class="ShareeSharedGuiLib.View.HintForRefreshingPageView">
|
|
|
|
<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>
|