devtools
devtools copied to clipboard
Ide theme color not getting set certain UI elements
The lighter gray is getting passed in by the query parameters from the IDE, but it is not getting applied everywhere:
URL:
Also seeing this on the Network Panel:
Performance panel:
Investigating https://github.com/flutter/devtools/issues/8466, I've discovered why this happens:
- We do not set the
colorSchemein theThemewe construct from the IDE background color, so any color properties we access oncolorSchemewill not be set to work with the IDE theme. - Furthermore,
DevToolsSharedColorSchemedoes not take into consideration the IDE theme: https://github.com/flutter/devtools/blob/3b73a655d85700b3b460c34691ba8b0e057eab17/packages/devtools_app_shared/lib/src/ui/theme/theme.dart#L343
Fixed in https://github.com/flutter/devtools/pull/9144