MAUI how to make ContentPage and FlyoutPage as one page?
<?xml version="1.0" encoding="utf-8" ?>
<FlyoutPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="InzynieriaAplikacja.Controls.Flyout"
Title="Flyout"
FlyoutLayoutBehavior="Popover">
<FlyoutPage.Flyout>
<ContentPage Title="Flyout">
<Label Text="Flyout"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"/>
</ContentPage>
</FlyoutPage.Flyout>
<FlyoutPage.Detail>
<ContentPage>
<Label Text="Flyout Detail"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"/>
</ContentPage>
</FlyoutPage.Detail>
</FlyoutPage>
here is my flyout page but i have not idea how to add here as theoretically detail my grid and whole content from like my mainview page? and do i need to make my mainview as flyout page do display it maybe? i don't how to deal with it
0 Replies