-
Notifications
You must be signed in to change notification settings - Fork 106
Common Custom Code Examples #200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+431
−43
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8eb272d
add new diagrams and fix docs
PoojaB26 1ee8c21
Add new custom code common examples and update positions of pages
PoojaB26 3a14489
add import info
PoojaB26 527a2b5
renaming header to match what is in the app
PoojaB26 e2abf07
fix anchors
PoojaB26 17f396b
add firebase auth reference example
PoojaB26 6009bbb
Apply suggestions from code review
PoojaB26 7e1c0ab
Merge branch 'refs/heads/main' into pooja/custom-code-new-examples
PoojaB26 ff2c00b
add disclaimer about custom functions
PoojaB26 9cfbd43
change code example for update object property example
PoojaB26 13260f3
add info about static vs dynamic content
PoojaB26 6e5d1de
call out custom colors and text styles from theme
PoojaB26 0e56def
add example for checking if field exists
PoojaB26 343c144
Merge branch 'refs/heads/main' into pooja/custom-code-new-examples
PoojaB26 2c4f7e9
add FFclass examples
PoojaB26 5d7fa60
Merge branch 'main' into pooja/custom-code-new-examples
leighajarett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
348 changes: 348 additions & 0 deletions
348
docs/ff-concepts/adding-customization/common-examples.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,348 @@ | ||
--- | ||
slug: /concepts/custom-code/common-examples | ||
title: Common Examples | ||
description: Learn about the common custom code examples and use it directly in your project. | ||
tags: [Custom Actions, Custom Code] | ||
sidebar_position: 6 | ||
keywords: [FlutterFlow, Custom Actions, Customizations, Flutter, Dart, Pub.dev, Examples] | ||
--- | ||
|
||
# Common Code Examples | ||
|
||
The custom code feature in FlutterFlow allows you to extend functionality by accessing generated classes and modifying global variables like App States and FlutterFlow themes. This guide covers common scenarios where you can leverage custom code to enhance your project by working directly with data models and other resources within your code. | ||
|
||
:::warning[Disclaimer] | ||
Custom Functions cannot import new files or packages outside of the default dedicated imports. Therefore, most of the suggestions below that involve adding a new import will not work in Custom Functions due to this restriction. However, they will work for Custom Widgets and Custom Actions. | ||
|
||
For example, a new [**Custom Function**](custom-functions.md) typically includes the following packages and files. Your custom function code changes should use only these packages & files: | ||
|
||
```js | ||
import 'dart:convert'; | ||
import 'dart:math' as math; | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:google_fonts/google_fonts.dart'; | ||
import 'package:intl/intl.dart'; | ||
import 'package:timeago/timeago.dart' as timeago; | ||
import 'lat_lng.dart'; | ||
import 'place.dart'; | ||
import 'uploaded_file.dart'; | ||
import '/backend/backend.dart'; | ||
import 'package:cloud_firestore/cloud_firestore.dart'; | ||
import '/backend/schema/structs/index.dart'; | ||
import '/backend/schema/enums/enums.dart'; | ||
import '/auth/firebase_auth/auth_util.dart'; | ||
``` | ||
|
||
::: | ||
### Accessing FlutterFlow Generated Classes | ||
|
||
FlutterFlow generates a complete Flutter codebase for you as you build apps in its platform. Part of this code includes custom classes that are designed to streamline common tasks and encapsulate reusable properties or logic. | ||
|
||
For example: | ||
|
||
- **Button Widgets:** FlutterFlow provides custom button classes like `FFButton` that come with built-in styling and behaviors. | ||
- **Google Places:** The `FFPlace` class encapsulates properties of a Google Place, such as name, address, and coordinates. | ||
- **File Uploads:** The `FFUploadedFile` class represents files uploaded to your app, encapsulating properties like the file name, bytes, and URL. | ||
|
||
|
||
:::tip[What is a Class?] | ||
In programming, a class is a blueprint for creating objects. It defines properties (data) and methods (functions) that belong to objects of that type. | ||
|
||
For example, | ||
|
||
- A `Car` class might have properties like `color` and `speed` and methods like `drive()` and `stop()`. | ||
- In FlutterFlow, a class like `FFPlace` might have properties like `address` and `latLng`, and methods to manipulate or retrieve these values. | ||
::: | ||
|
||
These custom FlutterFlow classes in the generated code are mostly prefixed with `FF<ClassName>` or `FlutterFlow<ClassName>`. If you need to access these classes in your custom code, simply type "FF" or "FlutterFlow" in the code editor to locate them quick. | ||
|
||
|
||
 | ||
|
||
### Leveraging Components in Custom Widget | ||
|
||
:::warning[Static Components vs Dynamic] | ||
Use this approach only when the component is a fixed element that does not change across different use cases. If the child component needs to change based on user choices, pass it directly [**as a parameter**](custom-widgets.md#creating-a-new-custom-widget). | ||
::: | ||
|
||
In a **[Custom Widget](custom-widgets.md)**, you can integrate a previously built **[FlutterFlow Component](../../resources/ui/components/intro-components.md)** directly, saving you from recreating child content in code. For example, if you’re building a Custom Widget to display custom dialog boxes or bottom sheets using a package from | ||
PoojaB26 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[pub.dev](custom-code.md#pubdev), you can simply return an existing Component created on the canvas, rather than coding a new one from scratch. | ||
|
||
:::tip[Imports] | ||
When referencing a Component class in your code, FlutterFlow will automatically add the necessary import statement. | ||
::: | ||
|
||
|
||
|
||
 | ||
|
||
|
||
### Accessing FlutterFlow Theme in Custom Widget | ||
|
||
When building custom widgets, you often need to style parts of the widget, such as setting colors. Instead of using hardcoded color values, you can directly access the **FlutterFlow Theme**. This theme provides consistent styling across your app and reflects colors set by you or your project developer. | ||
|
||
To access theme colors in your custom widget, use the `FlutterFlowTheme.of(context)` method. This allows you to retrieve any theme property, such as the default `primary`, `primaryBackground`, or other custom-created colors, as well as text styles like `bodyLarge` or `bodyMedium`, ensuring that your custom widget aligns with the app’s overall theme. | ||
|
||
Here’s an example of how to use the primary color from FlutterFlow Theme in a custom widget: | ||
|
||
:::tip[Imports] | ||
Ensure you import `import '../flutter_flow/flutter_flow_theme.dart';` when accessing `FlutterFlowTheme` in your custom widgets. | ||
::: | ||
|
||
|
||
```js | ||
class CustomButton extends StatefulWidget { | ||
final String label; | ||
|
||
CustomButton({required this.label}); | ||
|
||
@override | ||
_CustomButtonState createState() => _CustomButtonState(); | ||
} | ||
|
||
class _CustomButtonState extends State<CustomButton> { | ||
bool isPressed = false; | ||
|
||
void toggleButton() { | ||
setState(() { | ||
isPressed = !isPressed; | ||
}); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return ElevatedButton( | ||
style: ElevatedButton.styleFrom( | ||
backgroundColor: isPressed | ||
? FlutterFlowTheme.of(context).primary // Primary color when pressed | ||
: FlutterFlowTheme.of(context).secondaryBackground, // Default color | ||
foregroundColor: FlutterFlowTheme.of(context).secondaryText, // Text color | ||
), | ||
onPressed: toggleButton, | ||
child: Text( | ||
widget.label, | ||
style: FlutterFlowTheme.of(context).bodyText1, // Themed text style | ||
), | ||
); | ||
} | ||
} | ||
``` | ||
:::info | ||
Find the list of colors, | ||
|
||
### Manipulating AppState from Custom Code | ||
|
||
In FlutterFlow, you can access or update AppState directly from the Action Flow Editor. However, certain scenarios may require you to access or modify AppState within custom code for more control over the operation flow. The FFAppState class also provides additional helper functions to manipulate AppState variables. Let’s look at some examples: | ||
|
||
:::tip[Imports] | ||
Ensure you import `import '../../flutter_flow/flutter_flow_util.dart';` when accessing `FFAppState` in custom code resources. | ||
::: | ||
|
||
- **Accessing AppState in Custom Code** | ||
|
||
```js | ||
|
||
Future getCartItems() async { | ||
// Retrieve the current cart items from AppState | ||
final currentCartItems = FFAppState().cartItems; | ||
print('Current Cart Items: $currentCartItems'); | ||
} | ||
``` | ||
|
||
- **Updating AppState Values in Custom Code** | ||
|
||
```js | ||
Future enableDarkMode() async { | ||
// Enable dark mode in AppState | ||
FFAppState().update(() { | ||
FFAppState().enableDarkMode = true; | ||
}); | ||
print('Dark mode enabled'); | ||
} | ||
``` | ||
|
||
- **Modifying a List in AppState Using Helper Functions** | ||
|
||
The `FFAppState` class offers a variety of helper functions to easily manage list variables in AppState. For a detailed overview of this generated class, check out **[this guide](../../generated-code/ff-app-state.md#managing-appstatelist)**. Here are some examples of how to use these helper functions to modify an AppState list variable: | ||
|
||
```js | ||
Future addLocation(LatLng value) async { | ||
// Add a new location to the LatLng list | ||
FFAppState().addToLatLngList(value); | ||
} | ||
|
||
Future removeLocation(LatLng value) async { | ||
// Remove a specific location from the LatLng list | ||
FFAppState().removeFromLatLngList(value); | ||
} | ||
|
||
Future removeLocationAtIndex(int index) async { | ||
// Remove a location at a specific index from the LatLng list | ||
FFAppState().removeAtIndexFromLatLngList(index); | ||
} | ||
|
||
Future updateLocationAtIndex(int index, LatLng Function(LatLng) updateFn) async { | ||
// Update a location at a specific index in the LatLng list | ||
FFAppState().updateLatLngListAtIndex(index, updateFn); | ||
} | ||
|
||
Future insertLocationAtIndex(int index, LatLng value) async { | ||
// Insert a new location at a specific index in the LatLng list | ||
FFAppState().insertAtIndexInLatLngList(index, value); | ||
} | ||
``` | ||
|
||
|
||
### Leverage Custom Data Types | ||
When you create a custom data type in FlutterFlow, it **[generates a corresponding `<Name>Struct` class](../../generated-code/custom-data-type-gen.md)**. In FlutterFlow's custom code, you can create new instances of such data types, pass instances back into an action, or manipulate and retrieve information from existing objects. Here are some examples to help illustrate working with an example `ProductStruct` class. | ||
|
||
#### Example 1: Creating a new Instance of `ProductStruct` | ||
To create a new `ProductStruct` instance, initialize it with the required properties: | ||
|
||
```js | ||
// Create a new instance of ProductStruct | ||
final newProduct = ProductStruct( | ||
productId: '123', | ||
name: 'Example Product', | ||
description: 'A sample product description.', | ||
category: 'Electronics', | ||
subCategory: 'Mobile Phones', | ||
price: PriceStruct(amount: 299.99, currency: 'USD'), | ||
sizes: ['Small', 'Medium', 'Large'], | ||
colors: [ColorsStruct(colorName: 'Red', colorHex: '#FF0000')], | ||
images: [ImagesStruct(thumbnail: 'https://example.com/image.jpg')], | ||
stockStatus: StockStatusStruct(xs: 0, small: 2), | ||
reviews: [ReviewsStruct(rating: 4, comment: 'Great product!')], | ||
); | ||
|
||
``` | ||
|
||
#### Example 2: Accessing Properties of an Existing `ProductStruct` object | ||
|
||
If you have an existing `ProductStruct` object (e.g., retrieved from a list of products), you can access its properties or return specific values back to the calling Action. | ||
|
||
Let's assume you have an Action that calls a Custom Action to retrieve a field value from the provided `ProductStruct` object. | ||
|
||
- **Returning a Single Field from ProductStruct** | ||
|
||
This function retrieves and returns the product's name. The return type is `String?` to account for the possibility of a null value. | ||
```js | ||
PoojaB26 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// Function to return the product name from a ProductStruct instance | ||
String? getProductName(ProductStruct product) { | ||
// Access and return the product name | ||
return product.name; | ||
} | ||
``` | ||
|
||
- **Checking if a Field Exists in a `ProductStruct` Object** | ||
This function determines whether the `ProductStruct` object contains a non-null value for a specific field, such as `description`. It returns `true` if the field exists and is not null, and `false` otherwise. | ||
|
||
```js | ||
// Function to check if the description field exists in a ProductStruct instance | ||
bool hasDescription(ProductStruct product) { | ||
// Return true if the description is not null, false otherwise | ||
return product.description != null; | ||
} | ||
``` | ||
|
||
- **Returning a List of Review Comments from ProductStruct** | ||
|
||
This function retrieves a list of review comments from the reviews field in the `ProductStruct`. The return type is `List<String>` as it returns a list of comments (or an empty list if there are no reviews). | ||
|
||
```js | ||
// Function to return a list of review comments from a ProductStruct instance | ||
List<String> getProductReviewComments(ProductStruct product) { | ||
// Check if reviews are present and return a list of review comments | ||
return product.reviews?.map((review) => review.comment ?? '').toList() ?? []; | ||
} | ||
``` | ||
|
||
#### Example 3: Modifying Properties of an Existing `ProductStruct` Object | ||
You can also modify the properties of an existing `ProductStruct` object. This can be helpful if you want to update a field before saving the data back to Firebase or passing it into an action. | ||
|
||
- **Simple Property Modification** | ||
In this example, we’ll modify a single property, like `productName`, of an existing `ProductStruct` object. This example is straightforward and demonstrates how to update a basic field in the object. | ||
|
||
```js | ||
// Function to update the product name of a ProductStruct instance | ||
Future updateProductName(ProductStruct product, String newProductName) { | ||
// Update the product name with the new value | ||
product.productName = newProductName; | ||
} | ||
``` | ||
|
||
- **Complex Property Modification - Nested Object Update** | ||
In this more complex example, we’ll modify a nested property within the `ProductStruct`, such as updating the price (which itself is a `PriceStruct` object). This shows how to update a property that itself contains multiple fields. | ||
|
||
```js | ||
// Function to update the price of a ProductStruct instance | ||
Future updateProductPrice(ProductStruct product, double newAmount, String currency) { | ||
// Check if price is not null | ||
if (product.price != null) { | ||
// Update only the amount field | ||
product.price!.amount = newAmount; | ||
} else { | ||
// If price is null, optionally initialize it if needed | ||
product.price = PriceStruct( | ||
amount: newAmount, | ||
currency: currency, | ||
); | ||
} | ||
} | ||
``` | ||
|
||
- **Complex Property Modification - Updating a List Property** | ||
In this example, we’ll add new items to a list property, like adding new review comments to the `reviews` list in `ProductStruct`. This example shows how to work with a list of nested objects. | ||
|
||
```js | ||
Future addNewReviews(ProductStruct product) { | ||
product.reviews ??= []; // Initialize the reviews list if it's null | ||
product.reviews!.addAll([ | ||
ReviewStruct(rating: 5, comment: 'Excellent product!'), | ||
ReviewStruct(rating: 4, comment: 'Good quality, but a bit expensive.'), | ||
ReviewStruct(rating: 3, comment: 'Satisfactory, meets expectations.'), | ||
]); | ||
} | ||
``` | ||
|
||
or if the new list of reviews is being provided to the Custom Action, then: | ||
|
||
```js | ||
Future addDynamicReviews(ProductStruct product, List<ReviewStruct> newReviews) { | ||
product.reviews ??= []; // Initialize the reviews list if it's null | ||
product.reviews!.addAll(newReviews); // Add the new reviews | ||
} | ||
|
||
``` | ||
|
||
|
||
### Using Firebase Auth Variables in Custom Code | ||
|
||
When using Firebase Authentication for your app, FlutterFlow provides access to key authentication data, such as `currentUserDisplayName`, `currentUserUid`, and more. These variables can be used in your Custom Actions to build additional features that require such common data from authenticated users. | ||
|
||
For example, you can check if a user’s email is verified before proceeding with certain actions: | ||
|
||
```js | ||
if (currentUserEmailVerified) { | ||
// Perform action for verified users | ||
} | ||
``` | ||
|
||
Or, if you need to create a directory path that includes the user’s unique ID: | ||
```js | ||
String directoryPath = '/users/' + currentUserUid + '/files'; | ||
``` | ||
|
||
Here’s a list of other Firebase Auth variables that can be referenced in Custom Code: | ||
|
||
- `currentUserEmail` – The email address of the current user. | ||
- `currentUserUid` – The unique ID of the current user. | ||
- `currentUserDisplayName` – The display name set by the user. | ||
- `currentUserPhoto` – The profile photo URL of the current user. | ||
- `currentPhoneNumber` – The user’s phone number, if available. | ||
- `currentJwtToken` – The current user’s JWT token for secure requests. | ||
- `currentUserEmailVerified` – Boolean indicating if the user’s email is verified. | ||
|
||
- These variables make it easy to integrate Firebase Auth data into custom functionality, enhancing the user experience. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.