kdebugtools
kdebugtools is a powerful library for debugging flutter applications
you can access these features via webbrowser
- 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)
all these features work without rooting your device or usb connection
usage
import the package
...
dependencies:
...
k_debug_tools: ^1.0.0
...
...
use the plugin
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);
...
show floating button
...
debugger.instance.showdebugger(context);
...
show debugger panel
...
debugger.instance.showdebuggerdialog(context);
...
warning
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.
Comments are closed.