Silk Compose
Silk Compose is a specialized module for the SilkMC platform that enables developers to use Compose Multiplatform technology directly within Minecraft. This solution works both on the server side and on the client side (client-side functionality is currently in development).
Capabilities Demonstration

Dependency Installation
For Developers
The Silk Compose module is available for download via Maven Central.
modImplementation("net.silkmc:silk-compose:$version")
For Regular Users
To use the module in the game, you need to download it and add it to the list of mods.
Practical Application
Complete documentation on using the module is available for study.
To display a simple user interface for a player, execute the following code:
player.displayComposable(8, 6) {
YourComposableFunction()
}