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.
27 lines
1.2 KiB
27 lines
1.2 KiB
<?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"
|
|
xmlns:local="clr-namespace:Views"
|
|
x:Class="Views.MiniHeader"
|
|
x:Name="miniheader">
|
|
<Grid BackgroundColor="#116466" ColumnDefinitions="*,*,*">
|
|
<local:ReturnButton NeedReturn="{Binding NeedReturn, Source={x:Reference miniheader}}"
|
|
HorizontalOptions="Start" Padding="10, 10, 0, 0"
|
|
WidthRequest="60"
|
|
/>
|
|
<Label Grid.Column="1"
|
|
Text="{Binding TitleMini, Source={Reference miniheader}}"
|
|
FontSize="Medium"
|
|
FontAttributes="Bold"
|
|
LineBreakMode="WordWrap"
|
|
HorizontalTextAlignment="Center"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center" />
|
|
<ImageButton Grid.Column="2"
|
|
Source="person_default.svg"
|
|
WidthRequest="80" HeightRequest="80"
|
|
CornerRadius="50"
|
|
BorderWidth="4" BorderColor="Black"/>
|
|
</Grid>
|
|
</ContentView>
|