MasterDetail Display

1

How do I display the MasterDetail above the toolbar? An example of what I want is the MasterDetail of the Play Store app that appears up on the bar that stands the time.

<?xml version="1.0" encoding="utf-8" ?>
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="WhoGO.Views.MasterDetail.Main"
             xmlns:pages="clr-namespace:WhoGO.Views.MasterDetail"
             MasterBehavior="Split"
                  >
    <MasterDetailPage.Master>
        <pages:MainMaster x:Name="MasterPage" />
    </MasterDetailPage.Master>
    <MasterDetailPage.Detail>
        <pages:MainDetail />
    </MasterDetailPage.Detail>
</MasterDetailPage>
    
asked by anonymous 05.11.2017 / 15:49

0 answers