How to remove debug banner in flutter

ApmnTechDev
1 min readMay 14, 2020

--

By default flutter shows debug banner in android emultor or ios simulator. In the top right corner there is a DEBUG banner.

DEBUG banner

To remove this you can use debugShowCheckedModeBanner property of MaterialApp() widget. If you set this property to false , banner will be disappeared.

set to false related property!!
Set to false debugShowCheckedModeBanner !!!
DEBUG banner disappeared

--

--