No description
Find a file
Blizzard Finnegan ac4cf32a9d
Add rough implementation for testing
Still needs proper unit simplification and 1/8 fractional characters.
This implementation should be on my desktop, and if it is I will merge
that in an upcoming commit.
2025-04-15 19:43:53 -04:00
.fleet Major Refactor 2025-03-19 15:16:17 -04:00
.woodpecker more warning and error corrections 2025-03-19 15:16:18 -04:00
composeApp Add rough implementation for testing 2025-04-15 19:43:53 -04:00
gradle Editing Pass Part ... 6? 2025-03-31 09:16:00 -04:00
.gitignore Initial design structure 2025-03-31 17:10:37 -04:00
build.gradle.kts Major Refactor 2025-03-19 15:16:17 -04:00
Dockerfile.dpkg-build Update automated build configs 2025-03-19 15:16:18 -04:00
Dockerfile.web-serve Update automated build configs 2025-03-19 15:16:18 -04:00
gradle.properties Major Refactor 2025-03-19 15:16:17 -04:00
gradlew Major Refactor 2025-03-19 15:16:17 -04:00
gradlew.bat Major Refactor 2025-03-19 15:16:17 -04:00
README.md Major Refactor 2025-03-19 15:16:17 -04:00
settings.gradle.kts Major Refactor 2025-03-19 15:16:17 -04:00

This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop.

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:

    • commonMain is for code thats 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 Apples CoreCrypto for the iOS part of your Kotlin app, iosMain would be the right folder for such calls.
  • /iosApp contains iOS applications. Even if youre 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.

Learn more about Kotlin Multiplatform, Compose Multiplatform, Kotlin/Wasm

We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel #compose-web. If you face any issues, please report them on GitHub.

You can open the web application by running the :composeApp:wasmJsBrowserDevelopmentRun Gradle task.