How to "Set Value..." when debugging with Flutter in Android Studio How to "Set Value..." when debugging with Flutter in Android Studio dart dart

How to "Set Value..." when debugging with Flutter in Android Studio


While the execution halts on a breakpoint, setState has no effect.setState doesn't directly cause to rerender, it just marks the widget as required for rerender.

The next time the sync signal comes from the display, Flutter rebuilds the stale parts of the view.