We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2a9983 + 61ed737 commit a0a7113Copy full SHA for a0a7113
1 file changed
app/src/main/java/com/getcode/view/login/PhoneVerify.kt
@@ -239,6 +239,7 @@ private fun PhoneEntry(
239
contentAlignment = Center
240
) {
241
Text(
242
+ modifier = Modifier.padding(top = CodeTheme.dimens.border),
243
style = CodeTheme.typography.subtitle1,
244
text = "+${locale.phoneCode}"
245
)
@@ -254,7 +255,8 @@ private fun PhoneEntry(
254
255
modifier = Modifier
256
.fillMaxHeight()
257
.weight(1f)
- .focusRequester(focusRequester),
258
+ .focusRequester(focusRequester)
259
+ .padding(top = CodeTheme.dimens.thickBorder),
260
value = value,
261
textStyle = CodeTheme.typography.subtitle1.copy(color = CodeTheme.colors.onBackground),
262
keyboardOptions = KeyboardOptions.Default.copy(keyboardType = KeyboardType.Phone),
0 commit comments