-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhaptics.ts
More file actions
36 lines (28 loc) · 753 Bytes
/
Copy pathhaptics.ts
File metadata and controls
36 lines (28 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @AngelaMos | 2026
* haptics.ts
*/
import * as Haptics from 'expo-haptics'
export const haptics = {
selection: (): void => {
Haptics.selectionAsync()
},
light: (): void => {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light)
},
medium: (): void => {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium)
},
heavy: (): void => {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy)
},
success: (): void => {
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success)
},
warning: (): void => {
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Warning)
},
error: (): void => {
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Error)
},
} as const