react-native-fluid
react-native-fluid copied to clipboard
Cannot animate to opacity: 0
This will do nothing when the state activates:
WhenState(inactiveState, {opacity: 0})
whereas this will animate
WhenState(inactiveState, {opacity: 0.01})
I'm guessing there's an if(value)
somewhere where there should be an if(typeof value == "number")