Hi,
I am using MasterDetailPage and its working beautifully. But my problem is I have set Title to my Detail page, which is not shown at all, and its always invisible. If I navigate to Detail page normally without using MasterDetailPage, Title is shown properly. Added sample code of my MasterDetailPage.
// Create the master page with the ListView.
this.Master = new ContentPage
{
Title = "Master",
Content = new StackLayout
{
Children =
{
listView
}
}
};
// Create the detail page using NamedColorPage
this.Detail = new NotesListPage (_noteId, _viewUnreadNotes);
this.Detail.Title = "Notes";
Anyone ever experienced such behavior in MasterDetailPage?