mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
31 lines
985 B
XML
31 lines
985 B
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.NotConnectedToNetView">
|
|
|
|
<StackLayout
|
|
BackgroundColor="{x:DynamicResource attention-color}"
|
|
IsVisible="{Binding IsNotConnectedToNet}"
|
|
Padding="0"
|
|
Spacing="0"
|
|
Margin="0">
|
|
|
|
<StackLayout.Triggers>
|
|
<DataTrigger TargetType="StackLayout"
|
|
Binding="{Binding IsNotConnectedToNet}"
|
|
Value="false">
|
|
<Setter Property="HeightRequest" Value="0" />
|
|
</DataTrigger>
|
|
</StackLayout.Triggers>
|
|
|
|
<Label Text="{x:Static resources:AppResources.MarkingNoWeb}"
|
|
TextColor="White"
|
|
FontSize="Small"
|
|
Padding="5"
|
|
HorizontalTextAlignment="Center"
|
|
HorizontalOptions="CenterAndExpand"/>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentView>
|