본문 바로가기
Development Solutions/Flutter & Dart

[Flutter] How to remove the debug ribbon (5second) (디버그 리본 제거하는 방법)

by studio ODOC 2023. 10. 17.
반응형

[Flutter]

How to remove the debug ribbon (5second)

(5초만에 디버그 리본 제거하는 방법)

 

 

플러터를 기본 프로젝트로 생성하면

debug 모드를 주로 사용할 수 있도록

각종 프로젝트 관리 코드를 생성해줍니다.

(If you create Flutter as the default project,
So that you can mainly use debug mode Generates various project management codes.)

 

개발 중에는 이 디버그 리본이 있어도 상관 없으나

배포, 출시할 때에는 리본을 없애는 것이 좋겠죠!

(It is okay to have this debug ribbon during development.
It would be a good idea to remove the ribbon when distributing and releasing!)

 

디버그 리본을 없애려면

가장 메인의 build 함수 내의 MaterialApp에서

debugShowCheckedModeBanner를 false로 설정해주시면 됩니다.

(To get rid of the Debug ribbon in MaterialApp in the main build function. Just set debugShowCheckedModeBanner to false.)

 

아래와 같이 수정해주세요. (Please edit as follows.)

반응형

반응형