Fast
Great for small glue Few actions
Inline Flow is a sequence of actions inside an element’s event handler; it executes actions but does not return data.
Inline Flow is a sequence of actions you add directly inside an element’s event handler (for example: click, submit, change). It executes actions in order, but it does not return data as a reusable result object.
WARNING: Inline Flows don’t return data. If you need results (data out), use an App Flow or Page Flow.
Inline Flow is best when the logic is tied to one element/event and stays short and readable.
Upgrade when the sequence becomes complex, you need reuse, or you want a clean inputs/outputs contract.
Review what you did and choose a next tour.
Pick a related tour to continue.