aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Rusu <george@tagg.id>2021-05-07 11:28:49 -0700
committerGeorge Rusu <george@tagg.id>2021-05-07 11:28:49 -0700
commit81469b7527553622fd66cf12cc194616c55253c1 (patch)
treedcb4975db3c17cb10651edab2c55bdc7e566e680 /src
parenta2ef180e37211193f41ff5f02e18279e5242c219 (diff)
updated cursor color in TaggInput
Diffstat (limited to 'src')
-rw-r--r--src/screens/onboarding/BasicInfoOnboarding.tsx3
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}