feedback_apptive_grid

This is a plugin to send user feedback gathered using feedback to send to ApptiveGrid

Setup

  1. Create a new Feedback Space on ApptiveGrid using this template
  2. Copy the Feedback Form Link
  3. Wrap your App in a BetterFeedback Widget
    void main() {
      runApp(const BetterFeedback(child: MyApp()));
    }
    
  4. Provide a way to show the feedback panel by calling
    BetterFeedback.of(context).showAndUploadToApptiveGrid(
      formUri: Uri.parse('YOUR_FEEDBACK_FORM_LINK'),
    );