Skip to content

A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app and upload it as a ticket in Jira Software

License

Notifications You must be signed in to change notification settings

encalv/feedback_jira

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feedback_jira

🚀 Getting Started

Setup

First, you will need to add feedback_jira to your pubspec.yaml.

dependencies:
  flutter:
    sdk: flutter
  feedback_jira: x.y.z # use the latest version found on pub.dev

Then, run flutter pub get in your terminal.

Use it

Just wrap your app in a BetterFeedback widget. To show the feedback view just call BetterFeedback.of(context).showAndUploadToJira(...);. The callback gets called when the user submits his feedback.

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

void main() {
  runApp(
    BetterFeedback(
      child: const MyApp(),
    ),
  );
}

Provide a way to show the feedback panel by calling

BetterFeedback.of(context).showAndUploadToJira(
    domainName: 'domainName',
    apiToken: 'api-token',
);

Provide a way to hide the feedback panel by calling BetterFeedback.of(context).hide();

About

A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app and upload it as a ticket in Jira Software

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages