KDebugTools is a powerful library for debugging Flutter applications
- Check App and device information
- File management, transfer and preview
- Directly edit the shared preferences or database values
- Recording or throttling network with Flutter HttpClient
- Fetch logs of application
- View attributes of Flutter Widget
- Controlling the Flutter navigator
- Directly edit the device clipboard
- Cast and record device screen (Android only)
...
dependencies:
...
k_debug_tools: ^1.0.0
...
...
See the example
directory for a complete
sample app using KDebugTools.
You should be able to use package:k_debug_tools
almost as normal.
First of all, you must init the plugin with code like this:
...
Debugger.instance.init(
autoStartWebServer: true,
autoStartHttpHook: true);
...
...
Debugger.instance.showDebugger(context);
...
...
Debugger.instance.showDebuggerDialog(context);
...
Web tools of this project uses Google Analytics to anonymously report feature usage statistics. This data is used to help improve this project over time.