flutter_sentry 0.3.0 copy "flutter_sentry: ^0.3.0" to clipboard
flutter_sentry: ^0.3.0 copied to clipboard

discontinued
outdated

Sentry.io error reporting plugin for Flutter, offering tight integration with Flutter and native code.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_sentry/flutter_sentry.dart';
import 'package:sentry/sentry.dart';

void main() => FlutterSentry.wrap(
      () {
        runApp(MaterialApp(
          navigatorObservers: [
            FlutterSentryNavigatorObserver(),
          ],
          home: Scaffold(
            appBar: AppBar(
              title: const Text('Flutter Sentry plugin example app'),
            ),
            body: Padding(
              padding: const EdgeInsets.symmetric(horizontal: 40),
              child: Center(
                child: Column(
                  mainAxisAlignment: MainAxisAlignment.center,
                  crossAxisAlignment: CrossAxisAlignment.stretch,
                  children: <Widget>[
                    RaisedButton(
                      onPressed: () {
                        FlutterSentry.instance.userContext = const User(
                          id: '0123456789',
                          email: 'test@example.com',
                          extras: <String, dynamic>{
                            // This can be anything you like.
                            'purchased': true,
                            'signInMethod': 'Anonymous',
                            'currentConfig': {
                              'minApplicationVersion': '2.5',
                              'sharingFeatureEnabled': false,
                            },
                          },
                        );
                      },
                      child: const Text('Sign in'),
                    ),
                    const Divider(),
                    const RaisedButton(
                      onPressed: FlutterSentry.nativeCrash,
                      child: Text('Cause a native crash'),
                    ),
                    RaisedButton(
                      onPressed: () {
                        debugPrint('Throwing an uncaught exception');
                        throw Exception('Uncaught exception');
                      },
                      child: const Text('Throw uncaught exception'),
                    ),
                    RaisedButton(
                      onPressed: () => FlutterSentry.instance.captureException(
                        exception: Exception('Event'),
                      ),
                      child: const Text('Report an event to Sentry.io'),
                    ),
                  ],
                ),
              ),
            ),
          ),
        ));
      },
      dsn: 'https://420a0b0766e9450fbd3a456346c6eed2@sentry.io/1867468',
    );
15
likes
0
pub points
0%
popularity

Publisher

verified publisherfutureware.dev

Sentry.io error reporting plugin for Flutter, offering tight integration with Flutter and native code.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

device_info, flutter, package_info, sentry

More

Packages that depend on flutter_sentry