We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb5bbc commit 1743054Copy full SHA for 1743054
core/design/src/main/kotlin/br/com/mob1st/core/design/organisms/keyboard/Keyboard.kt
@@ -49,14 +49,14 @@ fun Keyboard(
49
) {
50
BoxWithConstraints {
51
val height = remember(maxWidth) {
52
- maxWidth - (Spacings.x1 * 4) - (KeyboardDefaults.spacing * 3)
+ maxWidth - (Spacings.x1 * 2) - (KeyboardDefaults.spacing * 3)
53
}
54
Row(
55
modifier = Modifier
56
.fillMaxWidth()
57
.height(height)
58
.background(MaterialTheme.colorScheme.background)
59
- .padding(Spacings.x1),
+ .padding(horizontal = Spacings.x1),
60
horizontalArrangement = Arrangement.spacedBy(KeyboardDefaults.spacing),
61
62
KeyboardColumn {
0 commit comments