File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,13 @@ import { Platform } from 'react-native';
6
6
*
7
7
* Determines whether to use haptic feedback.
8
8
*
9
- * Haptic communication is a highly effective form of nonverbal communication in native applications.
9
+ * Haptic feedback provides a physical response to user interactions,
10
+ * enhancing the user experience in native applications. It is commonly
11
+ * used to signify actions such as clicks, selections, or the display of a toast message
10
12
*
11
- * It is for example used to communicate clicks, selections, or the apperance of a toast message.
13
+ * Note: iOS devices produce more subtle haptic feedback compared to Android devices. It is now only used on iOS devices by default
12
14
*/
13
- const USE_HAPTICS = true ;
15
+ const USE_HAPTICS = Platform . OS === 'ios' ;
14
16
15
17
export const HapticFeedback = {
16
18
impactLight : 'impactLight' ,
You can’t perform that action at this time.
0 commit comments