Skip to content

Commit 3b1df95

Browse files
authored
Merge branch 'main' into rewrite/form-triggers
2 parents 7876ca4 + 01fce3b commit 3b1df95

File tree

33 files changed

+1712
-107
lines changed

33 files changed

+1712
-107
lines changed
130 KB
Loading
121 KB
Loading

docs/accounts-billing/plan-pricing.md

Lines changed: 650 additions & 3 deletions
Large diffs are not rendered by default.

docs/ff-concepts/adding-customization/code-file.md

Lines changed: 462 additions & 0 deletions
Large diffs are not rendered by default.

docs/ff-concepts/adding-customization/custom-code.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ There are a few different ways to make custom code accessible in FlutterFlow:
1818

1919
* **[Custom Functions](custom-functions.md):** Custom Dart functions that can be used to set Widget or Action properties.
2020
* **[Custom Actions](custom-actions.md):** Custom Dart functions that can be triggered by [Action Triggers](https://docs.flutterflow.io/resources/functions/action-triggers/) or used as nodes in an [Action Flow](https://docs.flutterflow.io/resources/functions/action-flow-editor#action-flow-editor). These are usually `async` functions and are able to import [custom package dependencies](#adding-a-pubspec-dependency).
21+
* **[Code File](code-file.md):** You can define custom classes, enums, and logic to manage your app’s data and behavior.
2122
* **[Custom Widgets](custom-widgets.md):** Custom Flutter widgets that can also import [custom package dependencies](#adding-a-pubspec-dependency) and be used in the same way as [Components](https://docs.flutterflow.io/resources/ui/components) throughout your project.
2223
* **[Configuration Files](configuration-files.md):** You'll have the ability to edit native files for Android and iOS.
2324

2425

26+
2527
:::tip[Why Write Custom Code?]
2628

2729
- **Extend Functionality:** Add features that are not included in the standard FlutterFlow
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/ff-concepts/animations/widget_animations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ If you notice carefully, the items appear in a staggered fashion. This can be ac
208208

209209
Select the item in the list and add the Slide animation.
210210

211-
In the Delay property, open the variable menu and add a [code expression](../../resources/control-flow/functions/utility-functions.md#code-expressions) to calculate the delay value based on the item's index. For this example, we use the formula `[index] * 100`, where `index` represents the position of the item, and `100` is the delay in milliseconds. This means the first item will slide in after 100 ms, the second after 200 ms, and so on, creating a staggered animation effect.
211+
In the Delay property, open the variable menu and add a [inline function](../../resources/control-flow/functions/utility-functions.md#inline-function-code-expressions) to calculate the delay value based on the item's index. For this example, we use the formula `[index] * 100`, where `index` represents the position of the item, and `100` is the delay in milliseconds. This means the first item will slide in after 100 ms, the second after 200 ms, and so on, creating a staggered animation effect.
212212

213213
<div style={{
214214
position: 'relative',

0 commit comments

Comments
 (0)