Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Clean Architecture Swiftui | 4,371 | 2 months ago | 20 | mit | Swift | |||||
SwiftUI sample app using Clean Architecture. Examples of working with CoreData persistence, networking, dependency injection, unit testing, and more. | ||||||||||
Cleanarchitecturerxswift | 3,463 | 10 months ago | 28 | mit | Swift | |||||
Example of Clean Architecture of iOS app using RxSwift | ||||||||||
Expenso Ios | 605 | 8 months ago | 1 | apache-2.0 | Swift | |||||
A Simple Expense Tracker App built to demonstrate the use of SwiftUI, CoreData, Charts, Biometrics (Face & Touch ID), Export CSV and MVVM Architecture. | ||||||||||
Upcomingmovies | 449 | a day ago | mit | Swift | ||||||
Movies app written in Swift 5 using the TMDb API and demonstrating Clean Architecture, Dependency Injection, MVVM and Coordinators. | ||||||||||
Mgcleanarchitecture | 171 | a year ago | mit | Swift | ||||||
Clean Architecture with RxSwift & MVVM - Templates and Solutions | ||||||||||
Modular App Core | 127 | 3 years ago | 1 | Kotlin | ||||||
Core implementations for a modular Android App | ||||||||||
Nytimes Ios | 113 | 2 years ago | 1 | mit | Swift | |||||
🗽 NY Times is an Minimal News 🗞 iOS app 📱 built to describe the use of SwiftSoup and CoreData with SwiftUI🔥 | ||||||||||
Boxfeed | 83 | 2 years ago | apache-2.0 | Swift | ||||||
News App 📱 built to demonstrate the use of SwiftUI 3 features, Async/Await, CoreData and MVVM architecture pattern. | ||||||||||
Iosccc | 66 | 2 years ago | n,ull | apache-2.0 | Swift | |||||
:moneybag: A Currency Converter & Calculator IOS application to check, convert and calculate to popular currencies to your favorite ones. | ||||||||||
Ios Clean Architecture | 49 | 2 years ago | mit | Swift | ||||||
MVVM-Coordinator + RxSwift and Clean Architecture |
A demo project showcasing the setup of the SwiftUI app with Clean Architecture.
The app uses the restcountries.com REST API to show the list of countries and details about them.
Check out mvvm branch for the MVVM revision of the same app.
For the example of handling the authentication state in the app, you can refer to my other tiny project that harnesses the locks and keys principle for solving this problem.
AppState
as the single source of truthdidBecomeActive
, willResignActive
)
SwiftUI views that contain no business logic and are a function of the state.
Side effects are triggered by the user's actions (such as a tap on a button) or view lifecycle event onAppear
and are forwarded to the Interactors
.
State and business logic layer (AppState
+ Interactors
) are natively injected into the view hierarchy with @Environment
.
Business Logic Layer is represented by Interactors
.
Interactors receive requests to perform work, such as obtaining data from an external source or making computations, but they never return data back directly.
Instead, they forward the result to the AppState
or to a Binding
. The latter is used when the result of work (the data) is used locally by one View and does not belong to the AppState
.
Previously, this app did not use CoreData for persistence, and all loaded data were stored in the AppState
.
With the persistence layer in place we have a choice - either to load the DB content onto the AppState
, or serve the data from Interactors
on an on-demand basis through Binding
.
The first option suits best when you don't have a lot of data, for example, when you just store the last used login email in the UserDefaults
. Then, the corresponding string value can just be loaded onto the AppState
at launch and updated by the Interactor
when the user changes the input.
The second option is better when you have massive amounts of data and introduce a fully-fledged database for storing it locally.
Data Access Layer is represented by Repositories
.
Repositories provide asynchronous API (Publisher
from Combine) for making CRUD operations on the backend or a local database. They don't contain business logic, neither do they mutate the AppState
. Repositories are accessible and used only by the Interactors.