From 6412fff0068301aa9147118bb96650a64374d4b6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 28 Nov 2025 22:26:15 +0000 Subject: [PATCH 1/2] Initial plan From 5c2b2143715d2106e7cddb4cd4b49be5b33d8666 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 28 Nov 2025 22:29:55 +0000 Subject: [PATCH 2/2] Clarify FlyoutDisplayOptions.AsSingleItem vs AsMultipleItems documentation Co-authored-by: PureWeen <5375137+PureWeen@users.noreply.github.com> --- docs/fundamentals/shell/flyout.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/fundamentals/shell/flyout.md b/docs/fundamentals/shell/flyout.md index a8d2cf54e..b4cb7ffbe 100644 --- a/docs/fundamentals/shell/flyout.md +++ b/docs/fundamentals/shell/flyout.md @@ -1,7 +1,7 @@ --- title: ".NET MAUI Shell flyout" description: "Learn how to customize and control a .NET MAUI flyout, which is the optional root menu for a .NET MAUI Shell app." -ms.date: 08/30/2024 +ms.date: 11/28/2025 --- # .NET MAUI Shell flyout @@ -74,8 +74,10 @@ This implicit conversion automatically wraps each enumeration member: -- `AsSingleItem`, indicates that the item will be visible as a single item. This is the default value of the property. -- `AsMultipleItems`, indicates that the item and its direct children will be visible in the flyout as a group of items. +- `AsSingleItem`, indicates that the will be visible as a single entry in the flyout, regardless of how many child or objects it contains. When selected, the first child content is displayed, and users can switch between children using tabs (if more than one child exists). This is the default value of the property. +- `AsMultipleItems`, indicates that the direct children ( and objects) of the will each appear as separate entries in the flyout. This enables users to navigate directly to any child content from the flyout, rather than having to use tabs. + +Use `AsSingleItem` when you want to group related pages under a single flyout entry with tab navigation. Use `AsMultipleItems` when you want each page to be directly accessible from the flyout menu. A flyout item for each object within a can be displayed by setting the `FlyoutItem.FlyoutDisplayOptions` property to `AsMultipleItems`: