File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
feature/send-money/src/commonMain/kotlin/org/mifospay/feature/send/money Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -337,21 +337,31 @@ private fun UpiPinContent(
337337 imeAction = ImeAction .Done ,
338338 ),
339339 decorationBox = {
340- Row (horizontalArrangement = Arrangement .Center ) {
340+ Row (
341+ horizontalArrangement = Arrangement .SpaceEvenly ,
342+ modifier = Modifier .fillMaxWidth()
343+ ) {
341344 repeat(pinLength) { index ->
342345 UpiPinCharView (
343346 index = index,
344347 text = upiPin.value,
345348 showPin = showPin.value,
346349 )
347- Spacer (modifier = Modifier .width(KptTheme .spacing.sm))
348350 }
349351 }
350352 },
351353 modifier = Modifier
352354 .fillMaxWidth()
353355 .focusRequester(focusRequester),
354356 )
357+
358+ Text (
359+ text = " UPI PIN will keep your account secure from unauthorized access. Do not share this PIN with anyone" ,
360+ style = KptTheme .typography.bodySmall,
361+ color = androidx.compose.ui.graphics.Color .Gray ,
362+ textAlign = TextAlign .Center ,
363+ modifier = Modifier .fillMaxWidth(),
364+ )
355365 }
356366 }
357367}
You can’t perform that action at this time.
0 commit comments