Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 824596d

Browse files
committed
fix test
1 parent 05da762 commit 824596d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/common/fixtures/shell_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ List<int> getCurrentViewWidths() {
530530
final List<int> result = <int>[];
531531
for (final FlutterView view in PlatformDispatcher.instance.views) {
532532
result.add(view.viewId);
533-
result.add(view.physicalGeometry.width.round());
533+
result.add(view.physicalSize.width.round());
534534
}
535535
return result;
536536
}

0 commit comments

Comments
 (0)