Skip to main content

Using Components

Components in FlutterFlow can be added to the widget tree of a page or another component. They help streamline development by allowing you to reuse design and functionality throughout your app. Components can accept parameters, making them adaptable to specific contexts. Additionally, you can use callbacks to pass actions from parent entities to child components, enabling dynamic and interactive behavior. You can also use widget builders to subsitute dynamic content into the component's widget tree.

To learn more about creating components, see this page.

To add a Component to a Widget Tree

To add a component to thr widget tree of a page or another component, choose the parent entity where you want to add the new component. Next, you can see the component appear in the widgete palette, under the Components section.

Specify Parameter Values

In FlutterFlow, each component instance can receive unique values from its parent entity. When you add a component to the widget tree, you can set the parameter values by clicking on the instance of the component and going to the Property Panel.

Setting a Unique Key

When you have a component in a dynamically generated list, you have an option to set a unique key. Imagine you have a dynamic list where items can change frequently – like a to-do list where tasks are added and removed. Think of it as giving each task a unique ID number. This is important for a few reasons:

  • Tracking Changes: The 'Unique Key' helps the app recognize which tasks are new, completed, or removed, ensuring accurate updates.

  • Efficiency: With unique IDs, the app updates only the tasks that have changed instead of the entire list, improving performance.

  • Retaining Details: When you modify a task and move away from it, the 'Unique Key' ensures the changes are remembered and displayed correctly when you return.

tip

If it’s a list of Documents the unique key might be the Document ID.

Recursive Components

You can create a recursive component, meaning the component can include an instance of itself within its own widget tree. This is especially useful for nested content.

For example, in social media applications or forums, comments can have replies, and each reply can have further replies. A recursive component can display this nested structure effectively.

recursive-comp.png

Was this article helpful?