feedback_apptive_grid 1.0.1 feedback_apptive_grid: ^1.0.1 copied to clipboard
A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app and upload it to ApptiveGrid
feedback_apptive_grid #
This is a plugin to send user feedback gathered using feedback to send to ApptiveGrid
Setup #
- Create a new Feedback Space on ApptiveGrid using this template
- Copy the Feedback Form Link
- Wrap your App in a
BetterFeedback
Widgetvoid main() { runApp(const BetterFeedback(child: MyApp())); }
- Provide a way to show the feedback panel by calling
BetterFeedback.of(context).showAndUploadToApptiveGrid( formUri: Uri.parse('YOUR_FEEDBACK_FORM_LINK'), );