CaioQuirinoMedeiros/react-native-currency-input

keyboardAppearance prop not working

Closed this issue · 3 comments

The keyboardAppearance prop from TextInput doesn't appear to be working - trying to set it as dark and the keyboard is still showing as light.

              <CurrencyInput
                returnKeyType='done'
                value={currencyVal}
                onChangeValue={(val) => {
                  console.log(val);
                }}
                maxLength={8}
                delimiter=','
                minValue={0}
                precision={0}
                prefix='£'
                keyboardAppearance='dark'
              />
Screenshot 2024-08-01 at 16 13 57

This library does nothing with this keyboardAppearance. Show me some evidence that the problem is here or I'll be closing the issue

Perhaps this shouldn't be the case, but in VSCode it seems to expect that this prop can be passed - I assumed it would then just be passed down to the TextInput component used within the CurrencyInput component

Screenshot 2024-08-01 at 16 55 41

https://reactnative.dev/docs/textinput#keyboardappearance-ios

So even assuming that, you still opened a issue here... I'm closing this issue until any prove is shown