> For the complete documentation index, see [llms.txt](https://ryukiedev.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryukiedev.gitbook.io/wiki/flutter/09.-dai-ma-gui-fan.md).

# 09.代码规范

## Name non-constant identifiers using lowerCamelCase.

![1](/files/oLiq4J2loACyz5A5WudY)

如上图，警告。这里不是 const 不能使用大写开头的驼峰。

**DO** name non-constant identifiers using lowerCamelCase.

Class members, top-level definitions, variables, parameters, named parameters and named constructors should capitalize the first letter of each word except the first word, and use no separators.

**GOOD:**

```
var item;

HttpRequest httpRequest;

align(clearItems) {
  // ...
}
```

> <https://dart-lang.github.io/linter/lints/non\\_constant\\_identifier\\_names.html>
