react-native-input-spinner
react-native-input-spinner copied to clipboard
how to ovewrite skin props?
I apply the clean skin but thinking to remove the input shadow, using the shadow={false} doesn't work
Same problem here. Unhappy this property doesn't work.
You must use shadowOpacity as a prop of your style.
Ex.:
<InputSpinner
...
style={{
shadowOpacity: 0,
}}
/>
The result will looks like:
