groveman_crashlytics 1.0.4 groveman_crashlytics: ^1.0.4 copied to clipboard
Groveman tree that sends its logs to Firebase Crashlytics through recordError and logs.
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:groveman/groveman.dart';
import 'package:groveman_crashlytics/groveman_crashlytics.dart';
void main() {
Groveman.plantTree(DebugTree(showColor: true));
Groveman.captureErrorInZone(() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
Groveman.plantTree(CrashlyticsTree());
Groveman.captureErrorInCurrentIsolate();
runApp(const MyApp());
});
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
Groveman.info(
'Counter - $_counter',
);
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FloatingActionButton.extended(
onPressed: () {
Groveman.fatal(
'Fatal',
error: 'Fatal',
stackTrace: StackTrace.current,
);
},
label: const Text('Report fatal error'),
icon: const Icon(Icons.bug_report),
),
const SizedBox(
height: 16,
),
FloatingActionButton.extended(
onPressed: () {
Future.delayed(
Duration.zero,
() => throw Exception('Async error'),
);
},
label: const Text('Report error'),
icon: const Icon(Icons.error),
),
const SizedBox(
height: 16,
),
FloatingActionButton.extended(
onPressed: _incrementCounter,
label: const Text('Increment'),
icon: const Icon(Icons.add),
),
],
),
);
}
}