feedback_github 1.1.2 copy "feedback_github: ^1.1.2" to clipboard
feedback_github: ^1.1.2 copied to clipboard

A Flutter package that enables users to submit feedback as GitHub issues, storing images in Firebase Storage.

feedback_github #

A Flutter package that enables users to submit feedback as GitHub issues, storing images in Firebase Storage.

Features #

  • Allows the user to provide interactive feedback directly in the app, by annotating a screenshot of the current page, as well as by adding text.
  • Send this feeback as github issues, storing images in firebase storage
  • Optionally add debug informations (package and device info)

Demo #

you can find a full flutter demo here

Example Image

Getting started #

  1. Setup firebase & firebase storage : https://firebase.google.com/docs/storage/flutter/start
  2. create a github token (see below)
  3. Wrap you app with BetterFeedbackWidget :
void main() {
  runApp(
    BetterFeedback(
      child: const App(),
    ),
  );
}
  1. Provide a way to show the feedback and that's it !
// you can check how it will look here https://github.com/tempo-riz/dummy-repo/issues/2
BetterFeedback.of(context).showAndUploadToGitHub(
    repoUrl: "https://github.com/tempo-riz/dummy-repo",
    // Save it in an environment variable :)
    gitHubToken: dotenv.get("GITHUB_ISSUE_TOKEN"),
    // those are optionals (default values)
    labels: ['feedback'], // labels to add to the issue
    packageInfo: true, // show package Info
    deviceInfo: true, // show device Info
    extraData: "Some extra data you want to add in the issue",
    // imageRef: // another firebase storage ref to store the image
    onSucces: (issue) => print("succes !"),
    onError: (error) => print("failed :/ $error"),
)
// this returns a Future<Issue> so you can await it if you want or use callbacks

Alternatively you can use directly uploadToGitHub() if you don't want to use the panel (image is optional)

You can also call BetterFeedback.of(context).hide() to manually dimiss the panel

Get a GitHub token #

  • login to github
  • click on your avatar topright
  • settings (cogwheel)
  • Developer settings (bottom of list)
  • Personal acces tokens -> Fine-grained tokens (more secure than classic)
  • generate new token with :
    1. name it and add an optional expiration time (max date is 1 year from today)
    2. Repository access : Only select repositories, select your repo
    3. Give repository permission : Read and Write for Issues
    4. Generate your token and save it securely (don't commit it in a repo)

🎨 Configuration & customization #

import 'package:feedback/feedback.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';

void main() {
  runApp(
    BetterFeedback(
      child: const MyApp(),
      theme: FeedbackThemeData(
        background: Colors.grey,
        feedbackSheetColor: Colors.grey[50]!,
        drawColors: [
          Colors.red,
          Colors.green,
          Colors.blue,
          Colors.yellow,
        ],
      ),
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalFeedbackLocalizationsDelegate(),
      ],
      localeOverride: const Locale('en'),
    ),
  );
}

How the properties of FeedbackThemeData correspond to the view can be seen in the following image. Theme Usages

Changing the localizations texts #

You can customize the localizations as follows. Create your own implementation of FeedbackLocalizations or subclass one of the existing translations, if you just want to change one or two texts. Then create your own GlobalFeedbackLocalizationsDelegate and pass it to BetterFeedback.

class CustomFeedbackLocalizations implements FeedbackLocalizations {
  // ...
}

class CustomFeedbackLocalizationsDelegate
    extends GlobalFeedbackLocalizationsDelegate {
  static final supportedLocales = <Locale, FeedbackLocalizations>{
    // remember to change the locale identifier
    // as well as that defaultLocale (defaults to en) should ALWAYS be
    // present here or overridden
    const Locale('en'): const CustomFeedbackLocalizations(),
  };
}

void main() {
  runApp(
    BetterFeedback(
      child: const MyApp(),
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        CustomFeedbackLocalizationsDelegate(),
      ],
    ),
  );
}

Why firebase storage ? #

GitHub's API doesn't allow uploading files in issues (only via the web interface)

Credits 🙏 #

This package is based on the original work of Jonas Uekötter. Check out the original repository here.

Issues, questions and contributing #

Contributions are always welcome ! Consider creating issues in the original repo if related to the UI part :)

1
likes
160
pub points
44%
popularity

Publisher

unverified uploader

A Flutter package that enables users to submit feedback as GitHub issues, storing images in Firebase Storage.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

device_info_plus, feedback, firebase_storage, flutter, github, package_info_plus, uuid

More

Packages that depend on feedback_github