Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prof18/moneyflow
A money management app wrote with Kotlin Multiplatform, Jetpack Compose and Swift UI. Work in Progress
https://github.com/prof18/moneyflow
jetpack-compose kotlin-multiplatform swiftui
Last synced: about 17 hours ago
JSON representation
A money management app wrote with Kotlin Multiplatform, Jetpack Compose and Swift UI. Work in Progress
- Host: GitHub
- URL: https://github.com/prof18/moneyflow
- Owner: prof18
- Created: 2020-08-25T20:30:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-02T20:02:15.000Z (21 days ago)
- Last Synced: 2024-12-15T21:03:19.809Z (8 days ago)
- Topics: jetpack-compose, kotlin-multiplatform, swiftui
- Language: Kotlin
- Homepage:
- Size: 9.89 MB
- Stars: 339
- Watchers: 12
- Forks: 41
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# MoneyFlow
A money management Android and iOS app wrote with Kotlin Multiplatform, Jetpack Compose and Swift UI.Coming soon: Desktop App (with Compose for Desktop).
MoneyFlow comes also in dark 🌃:
## Features roadmap
🚧 This project is a work in progress, some features are missing and they will arrive in the future.
- ✅ Transaction Entry
- 🏗 Transaction List
- 💭 Edit Transaction
- 💭 Add custom category
- 💭 Recap screen with plots
- 💭 Budgeting feature
- ✅ Database import and export
- ✅ Sync data with Dropbox
- 💭 Import from CSV
- 💭 Change currency
- 🏗 Lock view with biometricsLegend:
- ✅ Implemented
- 💭 Not yet implemented, still in my mind!
- 🏗 Working on it## How to build:
In order to build the iOS project, you will need to add a `Config.xcconfig` file inside the [iosApp/Assets](https://github.com/prof18/MoneyFlow/tree/main/iosApp/Assets) folder, with the content of the [Config.xcconfig.template](https://github.com/prof18/MoneyFlow/blob/main/iosApp/Assets/Config.xcconfig.template) file.
### Dropbox sync:
If you want to run the Dropbox sync, you need to create a Dropbox App [here](https://www.dropbox.com/developers/) and get an API key. For iOS, you need to provide also the URL scheme and both need to be placed in the `Config.xcconfig` file created above:
```xcconfing
DROPBOX_URL_SCHEME=db-
DROPBOX_API_KEY=
```On Android, you only need the API key, which must be included in the `local.properties` in the root project dir:
```properties
dropbox.app_key=
```## Further Readings
I wrote some articles about all the decisions and the thoughts that I’ve made to come up with an architecture for MoneyFlow.
- [Improving shared architecture for a Kotlin Multiplatform, Jetpack Compose and SwiftUI app](https://www.marcogomiero.com/posts/2022/improved-kmm-shared-app-arch/)
- [Choosing the right architecture for a [new] Kotlin Multiplatform, Jetpack Compose and SwiftUI app](https://www.marcogomiero.com/posts/2020/kmm-shared-app-architecture/)## License 📄
```
Copyright 2020-2022 Marco GomieroLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```