Simple-Stack 2.9.0 (2024-05-06)
- ADDED:
Backstack.goAppendChain(newKeys)
andBackstack.goAppendChain(asReplace, newKeys)
which appends the provided keys to the end of
the current history.
If any duplicates are provided, they will also be added to the end. If a key already exists in the history, it gets removed from earlier and
appended to the end.
If there are implicit parents used as the reorder occurs, please make sure that the scope hierarchy can still be rebuilt from left-to-right
order. It might be preferred top use ScopeKey.Child
instead of ScopeKey
in these cases.
- ADDED:
Backstack.findServices(serviceSearchMode)
andBackstack.findServicesFromScope(scopeTag, serviceSearchMode)
. (#284)
This allows for getting the services of a backstack (either only local services, or including parent services) that are accessible within
the backstack.