Flutter 去除右上角Debug标签

Flutter 去除右上角Debug标签

 

 想要去除右上角的DEBUG标签只需要在MaterialApp中加入debugShowCheckedModeBanner: false即可

 

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Demo',
      home: MyHomePage(title: 'Flutter Demo Home Page'),
      debugShowCheckedModeBanner: false
    );
  }
}

效果

Flutter 去除右上角Debug标签

 

上一篇:JavaScript函数式编程(纯函数、柯里化以及组合函数)


下一篇:动态规划之背包模型及其扩展应用