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 f32d553 commit b4a3c73Copy full SHA for b4a3c73
packages/flutter/lib/src/widgets/window.dart
@@ -60,7 +60,7 @@ abstract class WindowController with ChangeNotifier {
60
}) {
61
future
62
.then((WindowCreationResult metadata) async {
63
- _handleCreationResult();
+ _handleCreationResult(metadata);
64
65
_listener = _WindowListener(
66
viewId: metadata.rootView.viewId,
@@ -84,7 +84,7 @@ abstract class WindowController with ChangeNotifier {
84
});
85
}
86
87
- void _handleCreationResult(WindowCretionResult metadata) {
+ void _handleCreationResult(WindowCreationResult metadata) {
88
_view = metadata.rootView;
89
_size = metadata.size;
90
notifyListeners();
0 commit comments