mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 06:11:52 +00:00
Improve ChatAppSample placeholder UI
This commit is contained in:
parent
d1c1569b35
commit
ed0629a2ad
@ -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)
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user