2、Dart 中的命名规则

一、工程的命名规则:

hello_flutter

注意
只能包含小写字母和下划线,不能包含大写字母和中划线。

二、文件的命名规则:

slider_menu.dart
file_system.dart


三、类的命名规则:

  • 驼峰标识法命名类名
    HomePage,不要Home_Page,不推荐。
  • 使用lowerCamelCase(降低驼峰标识法)命名非常量标识符
final _bottomNavigationColor = Colors.blue;
  • const HomePage({Key? key}) : super(key: key);
    该行代码前加上 const,声明const构造函数。


你可能感兴趣的:(2、Dart 中的命名规则)