Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andydelso/datapad5e
A mobile application for quick management and referencing of Force/Tech powers for your SW5e sessions.
https://github.com/andydelso/datapad5e
android-app compose-multiplatform ios-app kotlin-multiplatform starwars utility
Last synced: 10 days ago
JSON representation
A mobile application for quick management and referencing of Force/Tech powers for your SW5e sessions.
- Host: GitHub
- URL: https://github.com/andydelso/datapad5e
- Owner: andydelso
- License: gpl-3.0
- Created: 2024-09-28T19:44:47.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-27T03:41:45.000Z (12 days ago)
- Last Synced: 2024-10-27T04:33:24.691Z (12 days ago)
- Topics: android-app, compose-multiplatform, ios-app, kotlin-multiplatform, starwars, utility
- Language: Kotlin
- Homepage:
- Size: 35.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datapad-5e
Multiplatform mobile application for quick referencing and managing Force/Tech powers for your [SW5e](https://sw5e.com) games.
This is a Kotlin Multiplatform project targeting Android, iOS. iOS is not yet functioning due to Kotlin 2.0 updates.## technology
- [Kotlin and Compose Multiplatform](https://www.jetbrains.com/kotlin-multiplatform/)
- [Ktor](https://ktor.io/)
- [Koin](https://insert-koin.io/)## data
The project uses official SW5e data with some help from generative AI for power images.# project roadmap
- **Completed**
- Users can view all the powers available currently
- Users can view specifics about each power upon tap
- **In progress**- Appropriate images for all powers
- Dependency Injection considerations
- **Future features**
- Locally stored data to prevent extra data usage
- Searchable powers
- Screen showing current favorites by action for actual sessions of play# project structure
* `/composeApp` is for code that will be shared across your Compose Multiplatform applications.
It contains several subfolders:
- `commonMain` is for code that’s common for all targets.
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
`iosMain` would be the right folder for such calls.* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.