flutter_bugfender 4.0.0 copy "flutter_bugfender: ^4.0.0" to clipboard
flutter_bugfender: ^4.0.0 copied to clipboard

Flutter plugin to enable Bugfender reporting (iOS, Android and web support).

flutter_bugfender #

A Bugfender Wrapper plugin (implementing native code) for Flutter Projects.

Note: This plugin was provided by the community, hence it is published "AS IS", our support might not always be able to help you.

Using the package #

Edit pubspec.yaml and add add flutter_bugfender to dependencies:

dependencies:
  flutter:
    sdk: flutter
  flutter_bugfender: ^4.0.0

Then run flutter pub get (or ‘Packages Get’ in IntelliJ) to download the package.

Edit lib/main.dart and add an import:

import 'package:flutter_bugfender/flutter_bugfender.dart';

And wrap your runApp statement like this:

void main() {
  FlutterBugfender.handleUncaughtErrors(() async {
    await FlutterBugfender.init("YOUR_APP_KEY",
        enableCrashReporting: true, // these are optional, but recommended
        enableUIEventLogging: true,
        enableAndroidLogcatLogging: true);
    FlutterBugfender.log("hello world!");
    runApp(new MyApp());
  });
}

Documentation #

For information on how to use our SDK, you can check the documentation to configure your project.

25
likes
130
points
420
downloads

Publisher

verified publisherbugfender.com

Weekly Downloads

Flutter plugin to enable Bugfender reporting (iOS, Android and web support).

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, meta, web

More

Packages that depend on flutter_bugfender

Packages that implement flutter_bugfender