Как убрать некрасивый перенос в Title="Справочник"?

Рейтинг: 0Ответов: 0Опубликовано: 10.04.2023
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="MobileApp.AppSport" NavigationPage.HasNavigationBar="false" BackgroundColor="SkyBlue">
    
    <ContentPage Title="Главная">
        <StackLayout>
            <Label Text="Welcome to the Gym App!" 
                   FontSize="Large"
                   FontAttributes="Bold"
                   HorizontalOptions="CenterAndExpand"
                   VerticalOptions="CenterAndExpand"/>
        </StackLayout>
    </ContentPage>

    <!-- Directory Page -->
    <ContentPage Title="Справочник">
        <StackLayout>
            <Label Text="Directory Page"
                   FontSize="Large"
                   FontAttributes="Bold"
                   HorizontalOptions="CenterAndExpand"
                   VerticalOptions="CenterAndExpand"/>
        </StackLayout>
    </ContentPage>

    <!-- Settings Page -->
    <ContentPage Title="Настройки">
        <StackLayout>
            <Label Text="Settings Page"
                   FontSize="Large"
                   FontAttributes="Bold"
                   HorizontalOptions="CenterAndExpand"
                   VerticalOptions="CenterAndExpand"/>
        </StackLayout>
    </ContentPage>

    <!-- Personal Account Page -->
    <ContentPage Title="Личный кабинет">
        <StackLayout>
            <Label Text="Personal Account Page"
                   FontSize="Large"
                   FontAttributes="Bold"
                   HorizontalOptions="CenterAndExpand"
                   VerticalOptions="CenterAndExpand"/>
        </StackLayout>
    </ContentPage>

</TabbedPage>

введите сюда описание изображения

Ответы

Ответов пока нет.