The debug banner is added by MaterialApp. If you simply add a “debugShowCheckedModeBanner: false” to MaterialApp then the banner will be removed. e.g.
MaterialApp(
debugShowCheckedModeBanner: false,
...other MaterialApp init...
The debug banner is added by MaterialApp. If you simply add a “debugShowCheckedModeBanner: false” to MaterialApp then the banner will be removed. e.g.
MaterialApp(
debugShowCheckedModeBanner: false,
...other MaterialApp init...