shake_flutter 10.0.0
shake_flutter: ^10.0.0 copied to clipboard
Shake is a tool for receiving better bug reports automatically. Reports arrive to you instantly with a ton of useful data so you can fix them 50X faster.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:shake_example/ui/main/home.dart';
import 'package:shake_flutter/shake_flutter.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
Shake.setShowFloatingReportButton(true);
Shake.setInvokeShakeOnScreenshot(false);
Shake.setInvokeShakeOnShakeDeviceEvent(false);
Shake.start();
runApp(Home());
}