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.dataset_rounded),
      icon: const Icon(Icons.dataset_outlined),
      label: "Console",
      tooltip: "In app debug console"
    )
  );
}