exportAppPageView method
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.collections_bookmark_rounded),
icon: const Icon(Icons.collections_bookmark_outlined),
label: "Data",
tooltip: "View data collected from past matches"
)
);
}