This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ abstract class PlatformDispatcher {
83
83
VoidCallback ? get onAccessibilityFeaturesChanged;
84
84
set onAccessibilityFeaturesChanged (VoidCallback ? callback);
85
85
86
- void updateSemantics (SemanticsUpdate update, [ FlutterView view] );
86
+ void updateSemantics (SemanticsUpdate update);
87
87
88
88
Locale get locale;
89
89
Original file line number Diff line number Diff line change @@ -691,7 +691,7 @@ class EnginePlatformDispatcher extends ui.PlatformDispatcher {
691
691
}
692
692
693
693
@override
694
- void updateSemantics (ui.SemanticsUpdate update, [ui. FlutterView ? view] ) {
694
+ void updateSemantics (ui.SemanticsUpdate update) {
695
695
EngineSemanticsOwner .instance.updateSemantics (update);
696
696
}
697
697
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ abstract class FlutterView {
16
16
WindowPadding get padding => viewConfiguration.padding;
17
17
List <DisplayFeature > get displayFeatures => viewConfiguration.displayFeatures;
18
18
void render (Scene scene) => platformDispatcher.render (scene, this );
19
- void updateSemantics (SemanticsUpdate update) => platformDispatcher.updateSemantics (update, this );
19
+ void updateSemantics (SemanticsUpdate update) => platformDispatcher.updateSemantics (update);
20
20
}
21
21
22
22
abstract class FlutterWindow extends FlutterView {
You can’t perform that action at this time.
0 commit comments