Random app to play with numbers
  • Kotlin 86.9%
  • HTML 11.7%
  • CSS 1.4%
Find a file
Raphdf201 8c4217edf5
All checks were successful
Build / build (push) Successful in 3m14s
Reformat and center
2026-04-10 16:55:44 -07:00
.forgejo/workflows Add workflow 2026-02-23 18:04:46 -05:00
composeApp Reformat and center 2026-04-10 16:55:44 -07:00
gradle Update composeMultiplatform to v1.10.3 2026-03-19 10:00:06 -04:00
.gitignore Init 2026-02-23 17:53:09 -05:00
build.gradle.kts Reformat and center 2026-04-10 16:55:44 -07:00
gradle.properties Remove java home from gradle properties 2026-02-23 18:06:48 -05:00
gradlew Update dependency gradle to v9.4.1 2026-03-19 08:14:56 -04:00
gradlew.bat Update dependency gradle to v9 2026-02-23 21:08:33 -05:00
README.md Init 2026-02-23 17:53:09 -05:00
renovate.json Add renovate.json 2026-02-23 19:00:03 -05:00
settings.gradle.kts Init 2026-02-23 17:53:09 -05:00

This is a Kotlin Multiplatform project targeting Web, Desktop (JVM).

  • /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, the iosMain folder would be the right place for such calls. Similarly, if you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.

Build and Run Desktop (JVM) Application

To build and run the development version of the desktop app, use the run configuration from the run widget in your IDEs toolbar or run it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:run
    
  • on Windows
    .\gradlew.bat :composeApp:run
    

Build and Run Web Application

To build and run the development version of the web app, use the run configuration from the run widget in your IDE's toolbar or run it directly from the terminal:

  • for the Wasm target (faster, modern browsers):
    • on macOS/Linux
      ./gradlew :composeApp:wasmJsBrowserDevelopmentRun
      
    • on Windows
      .\gradlew.bat :composeApp:wasmJsBrowserDevelopmentRun
      
  • for the JS target (slower, supports older browsers):
    • on macOS/Linux
      ./gradlew :composeApp:jsBrowserDevelopmentRun
      
    • on Windows
      .\gradlew.bat :composeApp:jsBrowserDevelopmentRun
      

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 YouTrack.