You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/resources/style-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,11 @@ Best practices for naming conventions in app development (especially for project
14
14
15
15
Various naming styles (as suggested by [Dart Effective Style Guide](https://dart.dev/effective-dart/style#identifiers)):
16
16
17
-
-**UpperCamelCase** names capitalize the first letter of each word, including the first.
17
+
-**UpperCamelCase**(also known as PascalCase) names capitalize the first letter of each word, including the first.
18
18
19
-
-**lowerCamelCase** names capitalize the first letter of each word, except the first which is always lowercase, even if it's an acronym.
19
+
-**lowerCamelCase**(also known as camelCase) names capitalize the first letter of each word, except the first which is always lowercase, even if it's an acronym.
20
20
21
-
-**lowercase_with_underscores** names use only lowercase letters, even for acronyms, and separate words with _.
21
+
-**lowercase_with_underscores**(also known as snake_case) names use only lowercase letters, even for acronyms, and separate words with _.
@@ -140,4 +140,4 @@ Custom functions and custom actions created in the Custom Code tab of FlutterFlo
140
140
-**Don’t use overly generic names:** Avoid vague terms like `doSomething` or `functionOne`, which don’t provide context.
141
141
:::
142
142
143
-
Note that **[Action Blocks](../resources/control-flow/functions/action-blocks.md)** should follow the same naming convention as custom actions, as they are both technically Dart functions internally in the generated code.
143
+
Note that **[Action Blocks](../resources/control-flow/functions/action-blocks.md)** should follow the same naming convention as custom actions, as they are both technically Dart functions internally in the generated code.
0 commit comments