flutter_debug_tools 2.0.5
flutter_debug_tools: ^2.0.5 copied to clipboard
FlutterLens is a set of tools to help find and debug UI or performance issues from the Flutter app itself.
import 'package:flutter/material.dart';
import 'package:flutter_debug_tools/flutter_debug_tools.dart';
import 'src/demo_app.dart';
Future<void> main() async {
await DebugLogCapture.runApp(() async {
debugPrint('info: FlutterLens example flow booting');
runApp(const DemoApp());
});
}