container
Deprecated
Use orbitContainer instead
Replace with
orbitContainer(initialState, buildSettings, onCreate)Helps create a concrete container in a standard way.
Return
An OrbitContainer implementation
Parameters
The initial state of the container.
This builder can be used to change the container's settings.
The lambda to execute when the container is created. By default it is executed in a lazy manner when the container is first interacted with in any way.
Deprecated
Use orbitContainer instead
Replace with
orbitContainer(initialState, transformState, buildSettings, onCreate)Helps create a concrete container with external state transformation in a standard way.
Return
An OrbitContainer implementation
Parameters
The initial state of the container.
The function that transforms the internal state to the external state.
This builder can be used to change the container's settings.
The lambda to execute when the container is created. By default it is executed in a lazy manner when the container is first interacted with in any way.