Skip to content

Commit 3f150a4

Browse files
committed
Add more documentations
1 parent 1c84400 commit 3f150a4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Sources/Haptics/HapticFeedback.swift

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ protocol Haptic: Sendable {
44
@MainActor var performHapticFeedback: @Sendable () async -> Void { get }
55
}
66

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.
710
public struct HapticFeedback: Haptic {
811
internal var label: String
912
internal var performHapticFeedback: @Sendable () async -> Void
@@ -13,6 +16,7 @@ public struct HapticFeedback: Haptic {
1316
self.performHapticFeedback = performHapticFeedback
1417
}
1518

19+
/// Perform feedback in Main Actor.
1620
func perform() {
1721
Task { @MainActor in
1822
await self.performHapticFeedback()
@@ -21,10 +25,16 @@ public struct HapticFeedback: Haptic {
2125
}
2226

2327
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:)`.
2431
public enum Flexibility: Int, Sendable {
2532
case rigid, solid, soft
2633
}
2734

35+
/// The weight to be represented by a type of feedback.
36+
///
37+
/// Weight values can be passed to `HapticFeedback.impact(weight:intensity:)`.
2838
public enum Weight: Int, Sendable {
2939
case light, medium, heavy
3040
}

0 commit comments

Comments
 (0)