We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You have to use processColor first which doesn't match what the docs say. It looks like a similar fix was added for Android a while back. b84d21c
processColor
The text was updated successfully, but these errors were encountered:
This is how to directly use processColor for iOS in the mean time to set guideColor:
guideColor
import { Platform, processColor } from 'react-native' let conf = { guideColor: Platform.OS === 'ios' ? processColor(myColor) : myColor ... } CardIOModule.scanCard(conf).then(card => { ... })
Tested with react-native v0.53.3 (but should work with other versions).
react-native v0.53.3
Sorry, something went wrong.
No branches or pull requests
You have to use
processColor
first which doesn't match what the docs say. It looks like a similar fix was added for Android a while back. b84d21cThe text was updated successfully, but these errors were encountered: