Flutter 笔记 Android_Studio快捷键 Dart UI组建 Android_Studio快捷键 格式化代码 option + command + L 热重载 command + s 或 command + \ run control + r Dart //数组 var list = [1, 2, 3]; //字典 var gifts = { // Key:Value 'first':'A', 'second':'B', }; UI组建 Widget (小部件) 有状态 (Stateful) 无状态 (Stateless)