Adjust KeyboardButton animation duration

This commit is contained in:
Sad Ellie 2024-01-19 17:10:31 +03:00
parent 0f4c2594d4
commit 5ed0caa4ab

View File

@ -66,7 +66,7 @@ fun BasicKeyboardButton(
onLongClick = if (onLongClick != null) { { onLongClick(); vibrate() } } else null, onLongClick = if (onLongClick != null) { { onLongClick(); vibrate() } } else null,
interactionSource = remember { MutableInteractionSource() }, interactionSource = remember { MutableInteractionSource() },
cornerRadiusRange = 30..50, cornerRadiusRange = 30..50,
animationSpec = tween(250) animationSpec = tween(200)
) )
.background(containerColor) .background(containerColor)
, ,