main function

dynamic main()

Implementation

main() async {
  return runApp(MaterialApp(
    home: Scaffold(
      body: ItemView(
          userAvatar:
          "assets/uihub/gmail_ui/p1.jpg",
          avatarColor: Colors.blue,
          username: "John Doe",
          subject: "Hello",
          body: "Hello, how are you?",
          starred: true,
          timeAgo: "2 hours ago",
          seen: false,
          file: true,
          filename: "image.jpg").center(),
    ),
  ));
}