Код: Выделить всё
var flyoutItem = new FlyoutItem()
{
Title = "Dashboard",
Route = nameof(ParentDashboard),
FlyoutDisplayOptions = FlyoutDisplayOptions.AsMultipleItems,
Items =
{
new ShellContent
{
Title = "Dashboard",
FlyoutIcon = "home",
ContentTemplate = new DataTemplate(typeof(ParentDashboard)),
},
new ShellContent
{
Title = "Teachers",
FlyoutIcon = "parents",
ContentTemplate = new DataTemplate(typeof(Teachers))
},
new ShellContent
{
Title = "Messages",
FlyoutIcon = "chat",
ContentTemplate = new DataTemplate(typeof(RecentMessagesPage)),
},
new ShellContent
{
Title = "Events & Notices",
FlyoutIcon = "events",
ContentTemplate = new DataTemplate(typeof(Events))
},
new ShellContent
{
Title = "Pickup/Dropoff",
FlyoutIcon = "car",
ContentTemplate = new DataTemplate(typeof(PickupDropoffRequestsPage)),
},
new ShellContent
{
Title = "Attendance",
FlyoutIcon = "homework",
ContentTemplate = new DataTemplate(typeof(ParentStudentAttendancePage))
},
new ShellContent
{
Title = "Homework",
FlyoutIcon = "homework",
ContentTemplate = new DataTemplate(typeof(StudentHomeworks))
},
new ShellContent
{
Title = "Notifications",
FlyoutIcon = "notifications",
ContentTemplate = new DataTemplate(typeof(NotificationsPage))
},
new ShellContent
{
Title = "My School",
FlyoutIcon = "school",
ContentTemplate = new DataTemplate(typeof(SchoolProfile))
},
new ShellContent
{
Title = "Settings",
FlyoutIcon = "settings",
ContentTemplate = new DataTemplate(typeof(SettingsPage))
},
}
};
Начиная с меню «Самовывоз/вывоз» и заканчивая «Настройки», я перехожу на страницу «Дополнительно».
См. скриншоты ниже


Подробнее здесь: https://stackoverflow.com/questions/790 ... ui-ios-app