Screen title - .NET MAUI

In MAUI, we recommend setting an appropriate Title for each ContentPage.

<ContentPage
    x:Class="NewPage"
    xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    Title="Appt homescreen">
</ContentPage>
public NewPage()
{
    Title = "Appt homescreen";
}