# Conventions - 约定

* `performAction`是内部的，`action`是外部的。
* `computeValue`是内部的，`getValue`是外部的。
  * 递归调用应使用外部变量。Recursive calls should use the external variant.
* `adoptChild` 和`dropChild` 从`AbstractNode` 调用时，必须再child实例再框架作出反应之后。
* 许多小部件由较低级的小部件组成，通常以`Raw`开头，（例如`GestureDetector`和`RawGestureDetector`，`Chip`和`RawChip`，`MaterialButton`和`RawMaterialButton`）。 `Text`和`RichText`是一个例外。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://flutter.megathink.com/chinese/core/conventions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
