Sharing data between pages/screens/components

You can share data by using sessions or props

Using sessions:

Sharing data with session is global and you can access (read, change) data by any page or component

Using props:

Sharing data with props is when a child component uses father's component data

Right click on child component and select "Properties"

Add a prop, fill in the name and tap on "CREATE"

Click at the component, select the child component and fill in the data field at "CONTENT" in the "Settings attributes tab" with the data you want to share with the child component

Last updated

Was this helpful?