shakebug 1.0.9
shakebug: ^1.0.9 copied to clipboard
Shakebug allows users to report bugs from their mobile phone. Just shake the device to capture data, screenshots, and logs for developers to view easily.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:shakebug/shakebug.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
// Wrap your app with ShakebugSDK
return ShakebugSDK(
androidAppKey: 'rPUOZUwtgJKVOkL0SBoG44sR3xmBGa',
iosAppKey: 'jWeDkNJxancySe6YVAICp5RH9gDgK7',
child: MaterialApp(
title: 'Shakebug Example',
home: Scaffold(
appBar: AppBar(
title: const Text('Shakebug Example'),
),
body: const Center(
child: Text('Shake your phone to report a bug!'),
),
),
),
);
}
}