main function

void main()

Implementation

void main() {
  runApp(MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        appBarTheme: const AppBarTheme(backgroundColor: Colors.green),
        //fontFamily: Fonts.appFont,
        primarySwatch: Colors.green,
        textSelectionTheme: const TextSelectionThemeData(selectionHandleColor: Colors.transparent),
      ),
      home: const MyApp()));
}