mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 14:21:55 +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
|
package org.jetbrains.plugins.template.ui
|
||||||
|
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.heightIn
|
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
@ -12,13 +12,12 @@ import org.jetbrains.jewel.ui.component.Text
|
|||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ChatAppSample() {
|
fun ChatAppSample() {
|
||||||
Column(Modifier
|
Column(
|
||||||
.fillMaxWidth()
|
Modifier
|
||||||
.heightIn(20.dp)
|
.fillMaxWidth()
|
||||||
.padding(16.dp)) {
|
.padding(16.dp),
|
||||||
Text(
|
verticalArrangement = Arrangement.Center
|
||||||
"Not yet implemented",
|
) {
|
||||||
style = JewelTheme.defaultTextStyle
|
Text("Not yet implemented.", style = JewelTheme.defaultTextStyle)
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user