Container with color optimization
Summary
#A new ColoredBox
widget has been added to the framework,
and the Container
widget has been optimized to use it
if a user specifies a color
instead of a decoration
.
Context
#It is very common to use the Container
widget as follows:
return Container(color: Colors.red);
Previously, this code resulted in a widget hierarchy that used a
BoxDecoration
to actually paint the background color.
The BoxDecoration
widget covers many cases other than
just painting a background color,
and is not as efficient as the new ColoredBox
widget,
which only paints a background color.
Widget tests that wanted to assert based on the color
of a container in the widget tree would previously have
to find the BoxDecoration
to actually get
the color of the container.
Now, they are able to check the color
property
on the Container
itself, unless a BoxDecoration
was explicitly provided as the decoration
property.
It is still an error to supply both color
and
decoration
to Container
.
Migration guide
#Tests that assert on the color of a Container
or that expected it to create a
BoxDecoration
need to be modified.
Code before migration:
testWidgets('Container color', (WidgetTester tester) async {
await tester.pumpWidget(Container(color: Colors.red));
final Container container = tester.widgetList<Container>().first;
expect(container.decoration.color, Colors.red);
// Or, a test may have specifically looked for the BoxDecoration, e.g.:
expect(find.byType(BoxDecoration), findsOneWidget);
});
Code after migration:
testWidgets('Container color', (WidgetTester tester) async {
await tester.pumpWidget(Container(color: Colors.red));
final Container container = tester.widgetList<Container>().first;
expect(container.color, Colors.red);
// If your test needed to work directly with the BoxDecoration, it should
// instead look for the ColoredBox, e.g.:
expect(find.byType(BoxDecoration), findsNothing);
expect(find.byType(ColoredBox), findsOneWidget);
});
Timeline
#Landed in version: 1.15.4
In stable release: 1.17
References
#API documentation:
Relevant issues:
Relevant PR:
除非另有说明,本文档之所提及适用于 Flutter 的最新稳定版本,本页面最后更新时间: 2024-04-04。 查看文档源码 或者 为本页面内容提出建议。