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 34fc989 commit a8cb58bCopy full SHA for a8cb58b
1 file changed
feature/src/main/kotlin/team/aliens/dms/android/feature/chatbot/ui/component/ChatBotTypingIndicator.kt
@@ -10,6 +10,7 @@ import androidx.compose.foundation.layout.Arrangement
10
import androidx.compose.foundation.layout.Box
11
import androidx.compose.foundation.layout.Row
12
import androidx.compose.foundation.layout.offset
13
+import androidx.compose.foundation.layout.padding
14
import androidx.compose.foundation.layout.size
15
import androidx.compose.foundation.shape.CircleShape
16
import androidx.compose.runtime.Composable
@@ -25,6 +26,7 @@ import kotlin.math.roundToInt
25
26
@Composable
27
internal fun ChatBotTypingIndicator() {
28
Row(
29
+ modifier = Modifier.padding(start = 4.dp),
30
horizontalArrangement = Arrangement.spacedBy(4.dp),
31
) {
32
repeat(3) { index ->
0 commit comments