devtools
devtools copied to clipboard
Performance tools for Flutter
When we receive an event indicating that the app stopped as a result of an exception, we should show that info in the logging view.
Currently when an exception occurs, we inject an `` variable into the top stack frame. This means if you navigate up the stack (eg. if the exception occurred inside the...
The new Layout feature in the Inspector Screen details tab enables changing Flex-based widget's renderObject interactively during runtime, but current details tree will always show the render object values before...
Doesn't have to be super nicely formatted but being able to dump the tree in the first place is really useful.
Show a mirror of the device within intellij and allow selection from the mirror. In particular, this will improve selection when dealing with physical devices.
Having an option to quick jump to the widget causing the render overflow error would make it easier for users to diagnose layout issues and would avoid mistakes where users...
this is not an isusse  This is not a bug, rather it is a suggestion for a new feature on Devtools. I think, if it is possible to edit...
flutter run --start-paused Attaching to a running flutter app started with '--start-paused'. There is no way to resume the app because the debugger isn't available. Add a dialog, if this...
A mini map should give the user a good idea of where they are zoomed into on the overall chart.
## Steps to Reproduce 1. Replace the contents of main.dart with the following code: ``` import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext...