James Sedlacek
James Sedlacek
I'd like the ability to show a toast message whenever a user taps on a feature they already voted for. I can handle showing the message, but I need the...
When the features are loading initially I'd like to either have a loading indicator or skeleton shimmer views.
If the data fails to load initially we should have a screen with a warning icon & text that says "Something went wrong" with a "Try Again" button underneath it
I'd like to show an error toast message if it fails to fetch.
Allow users to tap on a button in a settings screen to show the onboarding again
Add a function to the providing protocol to reset onboarding
I want to give people the ability to use their own custom onboarding flow with the view modifier. ```swift import OnboardingKit import SwiftUI @main struct ExampleApp: App { var body:...
This would require making another OnboardingProvider that uses `ObservableObject` instead of `@Observable`. We would also need to remove the `Observable` from the protocol. I would prefer to keep the current...