Flutterアプリで開発中にアプリの右上に表示されている"Slow Mode"バナーを非表示にする方法です。
結論
MaterialApp
の中で debugShowCheckedModeBanner
を false
にする。
環境
- Flutter 0.1.5
- Dart 2.0.0-dev.28.0
サンプルコード
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Welcome to Flutter',
debugShowCheckedModeBanner: false, // <---- HERE
home: new Scaffold(
appBar: new AppBar(
title: new Text('Welcome to Flutter'),
),
body: new Center(
child: new Text('Hello World'),
),
),
);
}
}
リンク
How to remove slow mode banner in flutter on android emulator? - Stack Overflow
https://stackoverflow.com/questions/48893935/how-to-remove-slow-mode-banner-in-flutter-on-android-emulator