Fawaz Ahmed

Results 2 comments of Fawaz Ahmed

Try imapctMedium and above: ``` const hapticOptions = { enableVibrateFallback: false, ignoreAndroidSystemSettings: true, }; const hapticTriggerType = Platform.select({ ios: 'selection', android: 'impactMedium' }); ReactNativeHapticFeedback.trigger(hapticTriggerType, hapticOptions) ```

Excellent fix @darrenyaoyao ``` const flipY = duration => ({ transitionSpec: { duration, easing: Easing.out(Easing.poly(4)), timing: Animated.timing, useNativeDriver: true }, screenInterpolator: ({ position, scene }) => { const { index...