James Sedlacek
James Sedlacek
```swift import SwiftUI protocol HapticFeedbackServiceable { func perform(_ feedback: SensoryFeedback) } ``` I'm imaging we would create a service to handle this and be able to inject it into views/viewModels.
Support File Importer (presents a system interface for allowing the user to import multiple files) https://developer.apple.com/documentation/swiftui/view/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) The presenter function would be something like this: ```swift presenter.presentFileImporter { result in //...
- Add Gif for Toast - Add images for each toast convenience initializer (success, error, warning, etc.) - Add hero image for all the kinds of things that can be...
I want the ability to write a presenter function that presents a share sheet ```swift presenter.presentShareSheet(...) ```
It would be nice to have different picker styles instead of having 3 different picker objects. ```swift // This should be the default style AppearancePicker() .pickerStyle(.sheetWithImages) // This would be...
- View-Only - MV Pattern - MVVM Pattern - VIPER Pattern
I'd like to have a thorough example for how to use this package with a TabView. Preferably using DocC.