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