main function

dynamic main()

Implementation

main() async {
  return buildApp(
      appHome: ItemView(
    icon: Icons.menu,
    label: "menu",
    onPressed: (context) async {
      print("clicked menu");
    },
  ));
}