我正在与Mokey Finder tutorial从。 有一个详细的分类。
await Shell.Current.GoToAsync( nameof( DetailsPage ), true, new Dictionary<string, object>
{
{"Monkey", monkey }
} );
I m 能够在主食中增加一个Flyout Menu。 xaml using AppShell.xaml. 除了主食之外,我如何为内容分类添加Flyout Menu。 使用壳体的xaml?
<FlyoutItem Title="Dashboard"
FlyoutDisplayOptions="AsMultipleItems">
<ShellContent Title="Dashboard"
ContentTemplate="{DataTemplate view:MainPage}"
Route="MainPage"
Icon="dotnet_bot.svg" />
<ShellContent Title="Profile"
ContentTemplate="{DataTemplate view:ProfilePage}"
Route="ProfilePage"
Icon="dotnet_bot.svg" />
<ShellContent Title="Billing"
ContentTemplate="{DataTemplate view:BillingPage}"
Route="BillingPage"
Icon="dotnet_bot.svg" />
</FlyoutItem>