参考:https://www.jianshu.com/p/488f2d73e71d
手动输入代码太辛苦, 拼敲键盘速度? 赶快试用代码补全功能吧。
IntelliJ idea和Android Studio都支持代码自动补全功能, 如上面所示的几个场景。 在工作中可以把常用的代码块总结到模板里, 输入几个字符自动生成代码,从而提高撸码效率;
例如在创建dart文件后, 文件内容是空的。 这时有代码模块就方便多了, 在文件中输入stateful后点击回车代码就出来了。
import 'package:flutter/material.dart';
class $CUSTOMWIDGET$ extends StatefulWidget {
$CUSTOMWIDGET$({Key key, this.title}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget s