We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4c227c commit ddd5f6bCopy full SHA for ddd5f6b
gravatar-quickeditor/src/main/java/com/gravatar/quickeditor/ui/abouteditor/AboutEditor.kt
@@ -1,5 +1,6 @@
1
package com.gravatar.quickeditor.ui.abouteditor
2
3
+import androidx.compose.animation.animateContentSize
4
import androidx.compose.foundation.border
5
import androidx.compose.foundation.layout.Box
6
import androidx.compose.foundation.layout.Column
@@ -105,7 +106,10 @@ internal fun AboutEditor(
105
106
}
107
108
Surface {
- Box(modifier = Modifier.wrapContentSize()) {
109
+ Box(modifier = Modifier
110
+ .wrapContentSize()
111
+ .animateContentSize()
112
+ ) {
113
AboutEditor(
114
uiState = uiState,
115
onEvent = { event ->
0 commit comments