retyui / react-native-confirmation-code-field

A react-native confirmation code field compatible with iOS, Android and Web
MIT License
1.07k stars 125 forks source link

Placeholder and it's styling #194

Closed Prisoner-debugger closed 2 years ago

Prisoner-debugger commented 2 years ago

Hi! I'm new at programming and I have a dumb question : Do we have a way to create a placeholder if yes then how will it be styled?

retyui commented 2 years ago

placeholder?

could you please provide any images how it should looks like?

Prisoner-debugger commented 2 years ago

OtpCodeField

Prisoner-debugger commented 2 years ago

this is as close I have gotten, I don't know how to change the color of X code

appss

retyui commented 2 years ago

Try this:

style={[styles.cell, isFocused && styles.focusCell, !symbol && {color: 'red'} ]}
                                                                        ^^^ if no symbol apply red color             
Prisoner-debugger commented 2 years ago

Thanks a lot it worked