class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false, //去除debug图标
      home: MyHomePage(),
    );
  }
}

 

posted on 2023-12-18 00:05  鲤斌  阅读(27)  评论(0)    收藏  举报