We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79b571 commit c19167cCopy full SHA for c19167c
1 file changed
packages/devtools_app/lib/src/shared/charts/flame_chart.dart
@@ -269,6 +269,10 @@ abstract class FlameChartState<
269
verticalControllerGroup.resetScroll();
270
zoomController.reset();
271
verticalExtentDelegate.recompute();
272
+ } else if (widget.containerWidth != oldWidget.containerWidth ||
273
+ widget.containerHeight != oldWidget.containerHeight) {
274
+ initFlameChartElements();
275
+ verticalExtentDelegate.recompute();
276
}
277
FocusScope.of(context).requestFocus(focusNode);
278
super.didUpdateWidget(oldWidget);
0 commit comments