Apps using WishKit, today.
1 import WishKit
2
3 WishKit.configure(with: "your-api-key")
4
5 // Present the feature list
6 present(WishKit.viewController.withNavigation(), animated: true)
7
8
9
10
11
12
13
14
1 import WishKit
2
3 struct ContentView: View {
4 .. init() {
5 ..... WishKit.configure(with: "your-api-key")
6 .. }
7
8 .. var body: some View {
9 ..... WishKit.FeedbackListView().withNavigation()
10 .. }
11 }
12
13
14