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.info_rounded),
icon: const Icon(Icons.info_outline_rounded),
label: "About",
tooltip: "About 2638 Scouting Application"
)
);
}