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.map_rounded),
      icon: const Icon(Icons.map_outlined),
      label: "Game Info",
      tooltip: "View Game Info"
    )
  );
}