Imperio icon indicating copy to clipboard operation
Imperio copied to clipboard

Keep the screen flow and data handling logic out of your view controllers – let them handle view-stuff only.

Results 6 Imperio issues
Sort by recently updated
recently updated
newest added

All are private (implementation detail). The `setup` should be called in `init` (for views) or in `viewDidLoad` (for view controllers). The `update` should be called in the `viewModel`s `didSet`. The...

Also add the rationale, which is that this way no call to an `update()` method needs to be made so it can be internal (separating concerns).

This library already supports [Accio](https://github.com/JamitLabs/Accio) but doesn't document it in the list of supported dependency managers.

Do you support multiple **_sub_** flow controllers, for example, maybe useful in the case of a tab bar. `add(subFlowController: FlowController)` can be called multiple times, but it releases the previous...