You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
880 B
23 lines
880 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Views.ReturnButton"
|
|
x:Name="rb">
|
|
|
|
<Border
|
|
MaximumWidthRequest="100"
|
|
MaximumHeightRequest="45"
|
|
BackgroundColor="{AppThemeBinding Light={StaticResource Tertiary}, Dark={StaticResource Gray400}}"
|
|
IsEnabled="{Binding NeedReturn, Source={x:Reference rb}}"
|
|
IsVisible="{Binding NeedReturn, Source={x:Reference rb}}">
|
|
<Border.StrokeShape>
|
|
<RoundRectangle CornerRadius="10"/>
|
|
</Border.StrokeShape>
|
|
|
|
<ImageButton Source="arrow_back_icon.png"
|
|
HorizontalOptions="Center" VerticalOptions="Center"
|
|
Aspect="Center" Scale="0.7"/>
|
|
</Border>
|
|
|
|
</ContentView>
|