How can I remove the debug banner in Flutter

0 votes

I'm using flutter screenshot and I expected the screenshot to not have a banner, but it has.

I get a not supported for emulator message for profile and release mode.

Mar 1, 2023 in Android by Ashwini
• 5,430 points
417 views

1 answer to this question.

0 votes

The debug banner in Flutter can be removed by setting the debugShowCheckedModeBanner property of the MaterialApp widget to false. Here's an example:

void main() {
  runApp(
    MaterialApp(
      debugShowCheckedModeBanner: false,
      home: MyHomePage(),
    ),
  );
}

In this example, the debugShowCheckedModeBanner property is set to false to remove the debug banner. The MyHomePage widget is used as the home screen for the app, but you can replace it with your own widget.

Note that the debug banner is only shown in debug mode, and is automatically removed in profile and release modes. This is why you see the message "not supported for emulator" when trying to remove the banner in these modes.

If you're using a physical device to take the screenshot, you can switch to profile or release mode by running the following command in the terminal:

flutter run --release

This will build and run the app in release mode, which should not show the debug banner.

I hope this helps!

To know more about Flutter, join our Flutter Course today.

answered Mar 1, 2023 by vishalini

Related Questions In Android

0 votes
1 answer

How can I add a border to a widget in Flutter?

To add a border to a widget ...READ MORE

answered Mar 1, 2023 in Android by vishalini
7,440 views
0 votes
2 answers

How can I inspect element in an Android browser?

On Android smartphones, there are various ways ...READ MORE

answered Nov 15, 2022 in Android by Edureka
• 13,620 points
564 views
0 votes
0 answers

How do I get the current GPS location programmatically in Android?

I need to get my current location ...READ MORE

Nov 23, 2022 in Android by Ashwini
• 5,430 points
526 views
0 votes
1 answer

How do I use hexadecimal color strings in Flutter?

To use a hexadecimal color string in ...READ MORE

answered Mar 1, 2023 in Android by vishalini
10,826 views
0 votes
1 answer

Flutter project in iOS emulator takes forever to run, but its worked on Android emulator

Try flutter clean and flutter build ios ...READ MORE

answered Nov 18, 2022 in Mobile Development by gaurav
• 23,260 points
368 views
0 votes
1 answer

How to do Rounded Corners Image in Flutter?

To make the image in your Flutter ...READ MORE

answered Mar 1, 2023 in Android by vishalini
980 views
0 votes
1 answer

How to add a ListView to a Column in Flutter?

To add a ListView to a Column ...READ MORE

answered Mar 9, 2023 in Android by pooja
9,296 views
0 votes
1 answer
0 votes
1 answer

How can I dismiss the on screen keyboard?

To dismiss the on-screen keyboard, you can ...READ MORE

answered Mar 1, 2023 in Android by vishalini
1,298 views
0 votes
1 answer

How do I Set Background image in Flutter?

To set a background image in Flutter, ...READ MORE

answered Mar 10, 2023 in Android by vinayak
27,826 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP