Files
Igor Demin 76a77d288e Fix IDE examples (#2361)
- move intellij-plugin-with-experimental-shared-base into experimental examples (it still on Compose 1.0.0)
- remove usage of deprecated DesktopTheme
- add `[examples](experimental/examples)` to the main page
2022-10-05 16:07:36 +03:00

895 B

Example Compose Multiplatform based plugin for IntelliJ Idea.

A plugin, demonstrating an Intellij plugin, showing a dialog window written with Compose.

The only difference from examples/intellij-plugin is that this version does not bundle Compose runtime, which makes the plugin smaller and allows sharing Compose runtime between multiple plugins (Compose class files and native libraries are not loaded by each plugin).

Usage

  1. Start test IDE:
    • Run the following command in terminal: ./gradlew runIde
    • Or choose runIde configuration in IDE and run it.
      ide-run-configuration.png
  2. Create a new project or open any existing;
  3. Select Show Compose Demo... from the Tools menu.

screen1 screen2