Mehdi J
fun main() { application { val textStyle = JewelTheme.createDefaultTextStyle() val editorStyle = JewelTheme.createEditorTextStyle() IntUiTheme( theme = JewelTheme.lightThemeDefinition(defaultTextStyle = textStyle, editorTextStyle = editorStyle), styling = ComponentStyling.default() .decoratedWindow( titleBarStyle = TitleBarStyle.lightWithLightHeader() ) ) { DecoratedWindow( onCloseRequest = { exitApplication() }, title = "Jewel standalone sample", content = { Text("Hello World") }, ) } } }
Benni H.
DecoratedWindow
TitleBar
seb
A modern programming language that makes developers happier.