exportAppPageView method

  1. @override
({Widget child, ({Icon activeIcon, Icon icon, String label, String tooltip}) item}) exportAppPageView()
override

Gets the information built for this page

child refers to the actual content displayed on that page

item refers to the representation for the navigation bar

Implementation

@override
({
  Widget child,
  ({Icon activeIcon, Icon icon, String label, String tooltip}) item
}) exportAppPageView() {
  return (
    child: this,
    item: (
      activeIcon: const Icon(Icons.settings_applications_rounded),
      icon: const Icon(Icons.settings_applications_outlined),
      label: "Settings",
      tooltip: "Configure preferences for the application"
    )
  );
}