How to get half a millisecond vibration on ios in react native with expo? Similar to the vibration you get when typing on a keypad of a phone.
I seem to get it on android with this Vibration.vibrate([0, 0, 0, 30])
but it does not replicate the same on ios
here is the code below
<TouchableOpacity onPress={() => Vibration.vibrate([0, 0, 0, 30])} style={{ marginTop: 100, alignItems: 'center' }}>
<Text style={{ fontSize: 20 }}>Vibrate</Text>
</TouchableOpacity>