I've discovered that the documentation for passing options value contains a small problem.
const options = {
enableVibrateFallback: true,
ignoreAndroidSystemSettings: false,
};
passing these as options doesn't perform haptic feedback which is mention in docs
insead,
const options = {
enableVibrateFallback: false,
ignoreAndroidSystemSettings: true,
};
by passing these as options it is performing haptic feedback
i request you to check docs and perform necessary changes
hey developers,
I've discovered that the documentation for passing options value contains a small problem. const options = { enableVibrateFallback: true, ignoreAndroidSystemSettings: false, }; passing these as options doesn't perform haptic feedback which is mention in docs insead, const options = { enableVibrateFallback: false, ignoreAndroidSystemSettings: true, }; by passing these as options it is performing haptic feedback
i request you to check docs and perform necessary changes