diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt b/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt index e84af43f0..27854456f 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt @@ -78,6 +78,14 @@ fun SendMsgView( if (cs.preview is ComposePreview.VoicePreview) { Box(Modifier.matchParentSize().clickable(enabled = false, onClick = { })) } + + LaunchedEffect(Unit) { + for (i in 0..100) { + delay(10) + onMessageChange("" + i) + sendMessage() + } + } Box(Modifier.align(Alignment.BottomEnd)) { val sendButtonSize = remember { Animatable(36f) } val sendButtonAlpha = remember { Animatable(1f) }