There are two relevant interoperability APIs: `Co...
# compose-desktop
j
There are two relevant interoperability APIs:
ComposePanel
 - This widget allows you to put Compose into an existing Swing application or hierarchy, and allows you to render Compose widgets inside it.
SwingPanel
 - This widget allows you to put Swing widgets into an existing Compose application or hierarchy, and allows you to place Swing widgets inside it. Most other frameworks, like JavaFX, have good interoperability with Swing (enabling you to embed javafx into swing and vice versa), so you can use Swing as the glue between Compose and your other UI frameworks.
👍 5