File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ protocol Haptic: Sendable {
4
4
@MainActor var performHapticFeedback : @Sendable ( ) async -> Void { get }
5
5
}
6
6
7
+ /// Represents a type of haptic and/or audio feedback that can be played.
8
+ ///
9
+ /// This feedback can be passed to `View.hapticFeedback` to play it.
7
10
public struct HapticFeedback : Haptic {
8
11
internal var label : String
9
12
internal var performHapticFeedback : @Sendable ( ) async -> Void
@@ -13,6 +16,7 @@ public struct HapticFeedback: Haptic {
13
16
self . performHapticFeedback = performHapticFeedback
14
17
}
15
18
19
+ /// Perform feedback in Main Actor.
16
20
func perform( ) {
17
21
Task { @MainActor in
18
22
await self . performHapticFeedback ( )
@@ -21,10 +25,16 @@ public struct HapticFeedback: Haptic {
21
25
}
22
26
23
27
extension HapticFeedback {
28
+ /// The flexibility to be represented by a type of feedback.
29
+ ///
30
+ /// Flexibility values can be passed to `HapticFeedback.impact(flexibility:intensity:)`.
24
31
public enum Flexibility : Int , Sendable {
25
32
case rigid, solid, soft
26
33
}
27
34
35
+ /// The weight to be represented by a type of feedback.
36
+ ///
37
+ /// Weight values can be passed to `HapticFeedback.impact(weight:intensity:)`.
28
38
public enum Weight : Int , Sendable {
29
39
case light, medium, heavy
30
40
}
You can’t perform that action at this time.
0 commit comments