App/Flutter

[ FLUTTER ] Hot Key

HEON.D 2021. 7. 8. 14:59

필수키

r / R / h / c / i / p / o / v / P

 

Flutter run key commands.

리프레시
r Hot reload. 🔥🔥🔥

Hard 리프레시
R Hot restart.

헬프메세지 표시
h Repeat this help message.

Run 종료
d Detach (terminate "flutter run" but leave application running).

콘솔클리어
c Clear the screen

앱 종료 및 Run 종료
q Quit (terminate the application on the device).

스크린샷
s Save a screenshot to flutter.png.

다크모드
b Toggle the platform brightness setting
(dark and light mode). (debugBrightnessOverride)

덤프 위젯 계층 콘솔
w Dump widget hierarchy to the console. 
(debugDumpApp)

덤프 렌더링 트리 콘솔
t Dump rendering tree to the console.         
(debugDumpRenderTree)

덤프 레이어 트리 콘솔
L Dump layer tree to the console.        
(debugDumpLayerTree)

덤프 트리 순회 접근 콘솔
S Dump accessibility tree in traversal order.        
(debugDumpSemantics)             

덤프 트리 순회 접근 테스트순 콘솔
U Dump accessibility tree in inverse hit test order.       
(debugDumpSemantics)    

덤프 트리 순회 접근 테스트순 콘솔
U Dump accessibility tree in inverse hit test order.       
(debugDumpSemantics)                               

위젯 인스펙터
i Toggle widget inspector.   
(WidgetsApp.showWidgetInspectorOverride)

이미지 반전
I Toggle oversized image inversion 🖼️.        
(debugInvertOversizedImages)

레이아웃 구조 아웃라인
p Toggle the display of construction lines.    
(debugPaintSizeEnabled)         

OS 변경
o Simulate different operating systems.    
(defaultTargetPlatform) 

영역 빨간 테두리?
z Toggle elevation checker.                  

소스코드 발생?
g Run source code generators.                         

Write SkSL shaders?
M Write SkSL shaders to a unique file in the project directory.     

DevTool 열기
v Launch DevTools.                      

퍼포먼스 상태
P Toggle performance overlay.
(WidgetsApp.showPerformanceOverlay)           

Dev 화면에서 타임라인표시?
a Toggle timeline events for all widget build methods.  
(debugProfileWidgetBuilds)

'App > Flutter' 카테고리의 다른 글

[ FLUTTER ] Margin Padding 수치  (0) 2021.07.09
[ FLUTTER ] 키보드 아웃포커스  (0) 2021.07.08
[ FLUTTER ] non_constant_identifier_names  (0) 2021.06.28
[ FLUTTER ] GetX  (0) 2021.06.25
[ FLUTTER ] 앱 아이콘 변경  (0) 2021.05.03