Skip to content

Commit b7b361e

Browse files
committed
Add Xcode Library support for better code completion
1 parent 88b636e commit b7b361e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import SwiftUI
2+
3+
/// Makes `Haptics` view modifier available to Xcode's library,
4+
/// allowing for improved auto-complete and discoverability.
5+
public struct HapticsLibrary: LibraryContentProvider {
6+
@State var status: Status = .unknown
7+
8+
#if os(iOS)
9+
let generalHapticType = UIImpactFeedbackGenerator.FeedbackStyle.light
10+
#elseif os(watchOS)
11+
let generalHapticType = WKHapticType.click
12+
#endif
13+
14+
@LibraryContentBuilder
15+
public func modifiers(base: any View) -> [LibraryItem] {
16+
LibraryItem(base.haptics(onChangeOf: status, type: generalHapticType), title: "General Haptic")
17+
LibraryItem(base.haptics(when: status, equalsTo: .success, type: .success), title: "Conditional Haptics")
18+
}
19+
20+
enum Status: Int {
21+
case unknown = 0
22+
case success = 1
23+
case failure = 2
24+
}
25+
}
26+

0 commit comments

Comments
 (0)