From ed0629a2adfd02fc2cd9b81f24b32586279ffd3d Mon Sep 17 00:00:00 2001 From: Nebojsa Vuksic Date: Wed, 23 Jul 2025 14:52:12 +0200 Subject: [PATCH] Improve ChatAppSample placeholder UI --- .../plugins/template/ui/ChatAppSample.kt | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/main/kotlin/org/jetbrains/plugins/template/ui/ChatAppSample.kt b/src/main/kotlin/org/jetbrains/plugins/template/ui/ChatAppSample.kt index d83f9fb..5df65db 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/ui/ChatAppSample.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/ui/ChatAppSample.kt @@ -1,8 +1,8 @@ package org.jetbrains.plugins.template.ui +import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.heightIn import androidx.compose.foundation.layout.padding import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier @@ -12,13 +12,12 @@ import org.jetbrains.jewel.ui.component.Text @Composable fun ChatAppSample() { - Column(Modifier - .fillMaxWidth() - .heightIn(20.dp) - .padding(16.dp)) { - Text( - "Not yet implemented", - style = JewelTheme.defaultTextStyle - ) + Column( + Modifier + .fillMaxWidth() + .padding(16.dp), + verticalArrangement = Arrangement.Center + ) { + Text("Not yet implemented.", style = JewelTheme.defaultTextStyle) } } \ No newline at end of file