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 1382391 commit f50c0c0Copy full SHA for f50c0c0
speld/src/main/java/com/yogeshpaliyal/speld/OtpView.kt
@@ -61,6 +61,7 @@ fun OtpCell(
61
@Composable
62
fun PinInput(
63
modifier: Modifier = Modifier,
64
+ cellModifier: Modifier = Modifier,
65
length: Int = 5,
66
value: String = "",
67
disableKeypad: Boolean = false,
@@ -97,7 +98,7 @@ fun PinInput(
97
98
) {
99
repeat(length) {
100
OtpCell(
- modifier = Modifier
101
+ modifier = cellModifier
102
.size(width = 45.dp, height = 45.dp)
103
.clip(MaterialTheme.shapes.large)
104
.background(
0 commit comments