glo_insta_bug_reporter 0.1.0 copy "glo_insta_bug_reporter: ^0.1.0" to clipboard
glo_insta_bug_reporter: ^0.1.0 copied to clipboard

A package provides an easy way to instantly capture screenshot, edit it, describe and create card on glo board instantly in Flutter project.

GloInstaBugReporter: Instantly report UI bugs. #

Version

glo_insta_bug_reporter #

The package provides an easy way to instantly capture screenshot, edit it, describe and create card on glo board instantly in Flutter project.

Features #

  • Capture screenshot
  • Add description and title for created task
  • Editing screenshot

Version compatibility #

See CHANGELOG for all breaking (and non-breaking) changes.

Getting started #

You should ensure that you add the router as a dependency in your flutter project.

dependencies:
 glo_insta_bug_reporter: "^0.0.1"

You can also reference the git repo directly if you want:

dependencies:
 fluro:
   git: git://github.com/BohdanNikoletti/GloInstaBugReporter

You should then run flutter packages upgrade or update your packages in IntelliJ.

Example Project #

There is a pretty sweet example project in the example folder. Check it out. Otherwise, keep reading to get up and running.

Usage Example #

Pick a board and column Fill ticket important fields Edit captured screenshot

For get access to plugin features:

  • Create your OAuth app folowing instructions on GitKraken web site;
  • Add file named glo_config.json file structure example into assets directory in project with config that containes generated identifier & secret from previous step;
  • Extend your state from GloReportableWidgetState.
File structure example
{
  "identifier": "YOUR_IDENTIFIER",
  "secret": "YOUR_SECRET"
}
main.dart
class _MyHomePageState extends GloReportableWidgetState<HomePage> {
  @override
  Widget buildRootWidget(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'Test screenShot maker',
            ),
            Text(
              'tap',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
    );
  }
}

Credits #

GloInstaBugReporter is owned and maintained by Bohdan Mihiliev

License #

GloInstaBugReporter is available under the MIT license. See the LICENSE file for more info.

1
likes
40
pub points
10%
popularity

Publisher

unverified uploader

A package provides an easy way to instantly capture screenshot, edit it, describe and create card on glo board instantly in Flutter project.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

build_runner, flutter, flutter_webview_plugin, http, http_parser, json_annotation, json_serializable, oauth2, sensors, shared_preferences

More

Packages that depend on glo_insta_bug_reporter