안드로이드 스튜디오 플러터 단축키(flutter shotcut) and 팁(Tip) ; Mac Os 기준

 

[Ko]

 - quick docs 보기 : Mac(ctrl+j), Window(ctrl+q) —> 해당 widget 또는 class constructor 정보를 보여줌.

 - intention Action : 새로운 위젯으로 감싸거나, 감싼 위젯을 제거하는 행위, 3가지 방법으로 가능함. Editor 왼쪽의 전구모양 버튼, option+enter, Flutter Outline 상단 아이콘 또는 트리에서 메뉴 버튼

 - flutter app 개발시 주석 문구의 시작에 TODO: 넣으면 android studio 하단에서 TODO 항목들을 모아서 있으므로 개발시 매우 편리함.

https://dartpad.dartlang.org 이용해서 gist.github.com 작성해 놓은 코드를 보려면 gist 뒷부분 code id 복사해서 https://dartpad.dartlang.org 뒤에 /id 형식으로 붙여넣음.

 - android studio 버젼 컨트롤 시스템 VCS - Local history - Show history 사용하면 코드를 이전의 특정 상태로 되돌릴 있음.

 - 'aaa' android studio typo 인식하지 않도록 : 메뉴 - Spelling - Save ‘aaa’ to project-level dictionary

 - 안드로이드 스튜디오에서 텍스트(String) 영역에 아이콘 입력(Mac OS) : control + command + space --> image 선택

 - 특정 위젯으로부터 선택영역 확대 및 축소 : alt(option) + up/down key

 - Extract Method : alt(option) + command + M

 - Dart auto formatting : alt(option) + command + L

 - undo : command + Z

 - redo : shift + command + Z

 - 위젯에서 select action : option + enter (필요 패키지 또는 파일 import, 위젯으로 감싸기, 부모 위젯 삭제 등)

 - 블럭잡고 주석 달기 : command + /

 - 위젯, property, funtion 등을 rename : shift + fn + F6

 - 위젯으로 이동(위젯 내용 보기) : command + 마우스 클릭

 - 위젯, property 등에 대한 설명 보기 : control + J

 

[En]

- View quick docs: Mac (ctrl + j), Window (ctrl + q) —> Show the information of the corresponding widget or class constructor.

- intention Action: Wrapping with a new widget or removing the wrapped widget is possible in 3 ways. Lightbulb button on the left side of the editor, Option + enter, Flutter Outline icon on the top or menu button in the tree

- When developing a flutter app, put TODO: at the beginning of the comment text, and you can collect and view TODO items at the bottom of android studio, so it is very convenient for development.

- To see the code written on gist.github.com using https://dartpad.dartlang.org, copy the code id at the back of gist and paste it in the form of / id after https://dartpad.dartlang.org.

 - Version control system of android studio VCS-Local history-Using Show history, you can return the code to the previous specific state.
 - To prevent 'aaa' from being recognized by android studio as a typo: Menu-Spelling-Save 'aaa' to project-level dictionary

 - In Android Studio, enter the icon in the text area (Mac OS): control + command + space-> select image

 - Expansion and reduction of the selection area from a specific widget: alt (option) + up / down key
 - Extract Method: alt (option) + command + M
 - Dart auto formatting: alt (option) + command + L
 - undo: command + Z
 - redo: shift + command + Z
 - Select action from widget: option + enter (import required package or file, wrap with widget, delete parent widget, etc.)
 - Block and comment: command + /

 - Rename widget, property, funtion, etc .: shift + fn + F6

 - Go to widget (view widget contents): command + mouse click
 - View description of widgets, properties, etc .: control + J

+ Recent posts