Lifecycle¶
Nodes have their own lifecycles.
The relevant class Lifecycle is multiplatform.
Capping¶
No node can be in a higher lifecycle state than any of its parents or the platform-relevant App component (e.g. Android Activity) it lives in.
On-screen & off-screen¶
Appyx controls which children of an AppyxComponent should be added to the composition and which should not, based on their state and properties. This is done automatically.
Lifecycle changes¶
Child elements automatically receive appropriate lifecycle callbacks. The lifecycle state can be affected by:
- The
AppyxComponentof the parent (adding or removing childNodesand changing their on-screen status) - The parent's lifecycle state capping its children (transitive in the tree)
- On Android, Activity lifecycle will be capping the whole tree
Back stack node lifecycle¶
An example demonstrating the above:

Note that individual AppyxComponents might have their slight differences (e.g. whether their operations remove a Node only from the view, or completely destroy it).
In the case of the back stack:
- The
Pushoperation adds a new element and stashes the currently active one – the stashed one will be removed from the view &STOPPED - The
Popoperation removes an element, the childNodewill beDESTROYED