You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Technical refactor of navigation and datasources to a cleaner more scalable architecture which should help increase stability and ease adding new features.
the refactoring happens in three stages
Stage 1: Navigation
Using the Coordinator pattern a required tree-like VC structure can be established.
Pages to handle:
RootViewController
EditorViewController
PreferencesViewController
AlertController (both modal and popup)
Stage 2: DataSource
Splitting any kind of data read/write operation into repositories and datasources. This includes the following functionality:
UserDefaults
FileSystem
By design every component needs to be built with a reactive approach using the Combine framework.
The text was updated successfully, but these errors were encountered:
Technical refactor of navigation and datasources to a cleaner more scalable architecture which should help increase stability and ease adding new features.
the refactoring happens in three stages
Stage 1: Navigation
Using the Coordinator pattern a required tree-like VC structure can be established.
Pages to handle:
Stage 2: DataSource
Splitting any kind of data read/write operation into repositories and datasources. This includes the following functionality:
By design every component needs to be built with a reactive approach using the Combine framework.
The text was updated successfully, but these errors were encountered: