Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ckam99/compose-multiplatform

Compose multiplatform clean architecture
https://github.com/ckam99/compose-multiplatform

android clean-architecture coil compose compose-multiplatform koin kotlin kotlin-multiplatform sqldelight voyager

Last synced: 6 days ago
JSON representation

Compose multiplatform clean architecture

Awesome Lists containing this project

README

        

# Grocery app Kotlin Multiplatform

### Note

If got error somethink like `error: Could not find "co.touchlab:stately-common"` running on IOS, try add `-lsqlite3` in `Build settings` >> `Other Linker Flags` in Xcode. Also add
in commonMain module `build.gradle.kts` file:
```
commonMain.dependencies {
...
implementation("co.touchlab:stately-common:2.0.7")
}
```