Skip to content

Commit dc97351

Browse files
jason-simmonswandyers
authored andcommitted
[web] Represent CSS identity transforms as 'none' instead of null (flutter#18288)
1 parent f01479d commit dc97351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/lib/src/engine/util.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ String float64ListToCssTransform(Float32List matrix) {
8282
return float64ListToCssTransform3d(matrix);
8383
} else {
8484
assert(transformKind == TransformKind.identity);
85-
return null;
85+
return 'none';
8686
}
8787
}
8888

0 commit comments

Comments
 (0)