Want to remove slow mode tag in flutter app If you want to debug and only hide the ribbon, set the debugShowCheckedModeBanner property of Material Widget.
1 2 3 4 5 6 7 8 9 10 11 | 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'), ); } } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.