我已经开始扑动app开发了.我的问题是,如何在flutter应用程序中删除慢负载横幅.我使用了Material小部件(而不是MaterialApp),它不包含debugShowCheckedModeBanner属性.有没有办法在我的设备屏幕上摆脱那个横幅?
A screenshot containing the slow load banner
A screenshot containing the slow load banner
解决方法
在命令行中:
flutter run --release
如果要调试并仅隐藏功能区,请设置Material Widget的debugShowCheckedModeBanner属性
class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new MaterialApp( debugShowCheckedModeBanner: false,title: 'Flutter Demo',home: new MyHomePage(title: 'Flutter Demo Home Page'),); } }