diff options
author | George Rusu <george@tagg.id> | 2021-05-07 11:28:49 -0700 |
---|---|---|
committer | George Rusu <george@tagg.id> | 2021-05-07 11:28:49 -0700 |
commit | 81469b7527553622fd66cf12cc194616c55253c1 (patch) | |
tree | dcb4975db3c17cb10651edab2c55bdc7e566e680 /src/screens/onboarding/BasicInfoOnboarding.tsx | |
parent | a2ef180e37211193f41ff5f02e18279e5242c219 (diff) |
updated cursor color in TaggInput
Diffstat (limited to 'src/screens/onboarding/BasicInfoOnboarding.tsx')
-rw-r--r-- | src/screens/onboarding/BasicInfoOnboarding.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/screens/onboarding/BasicInfoOnboarding.tsx b/src/screens/onboarding/BasicInfoOnboarding.tsx index 25a5a6f8..103abc5c 100644 --- a/src/screens/onboarding/BasicInfoOnboarding.tsx +++ b/src/screens/onboarding/BasicInfoOnboarding.tsx @@ -318,6 +318,7 @@ const BasicInfoOnboarding: React.FC<BasicInfoOnboardingProps> = ({route}) => { accessibilityLabel="Phone number input field." placeholder="Phone Number" autoCompleteType="tel" + selectionColor='white' textContentType="telephoneNumber" autoCapitalize="none" keyboardType="number-pad" @@ -353,6 +354,7 @@ const BasicInfoOnboarding: React.FC<BasicInfoOnboardingProps> = ({route}) => { autoCapitalize="none" textContentType="name" returnKeyType="done" + selectionColor='white' onChangeText={step.onChangeText} onSubmitEditing={advance} autoFocus={true} @@ -379,6 +381,7 @@ const BasicInfoOnboarding: React.FC<BasicInfoOnboardingProps> = ({route}) => { autoCompleteType="password" textContentType="oneTimeCode" returnKeyType="next" + selectionColor='white' onChangeText={handlePasswordUpdate} onSubmitEditing={advanceRegistration} blurOnSubmit={false} |