mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Previously the embedder API documented this as an action ID, but it's actually the semantics node ID. This fixes the docs and renames the parameter to clarify its purpose. This callback is registered in the framework render bindings:9102f2fe0b/packages/flutter/lib/src/rendering/binding.dart (L43)Handled by `_handleSemanticsAction`:9102f2fe0b/packages/flutter/lib/src/rendering/binding.dart (L360-L366)Which invokes `SemanticsOwner.performAction`, where the node is looked up by ID:9102f2fe0b/packages/flutter/lib/src/semantics/semantics.dart (L3258-L3277)