From a2df2e5fe29556d48b57ce23a1f1028eb70d913a Mon Sep 17 00:00:00 2001 From: Rumeysa Bulut Date: Wed, 13 Aug 2025 12:35:45 +0200 Subject: [PATCH] Remove unsupported event from accessibilityinfo.md The event name 'accessibilityServiceChanged' is not present in react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts It's not supported, therefore the info is misleading --- website/versioned_docs/version-0.75/accessibilityinfo.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/versioned_docs/version-0.75/accessibilityinfo.md b/website/versioned_docs/version-0.75/accessibilityinfo.md index e06b765c140..985643c1ae3 100644 --- a/website/versioned_docs/version-0.75/accessibilityinfo.md +++ b/website/versioned_docs/version-0.75/accessibilityinfo.md @@ -89,7 +89,6 @@ Add an event handler. Supported events: | Event name | Description | | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `accessibilityServiceChanged`
Android
| Fires when some services such as TalkBack, other Android assistive technologies, and third-party accessibility services are enabled. The argument to the event handler is a boolean. The boolean is `true` when a some accessibility services is enabled and `false` otherwise. | | `announcementFinished`
iOS
| Fires when the screen reader has finished making an announcement. The argument to the event handler is a dictionary with these keys: | | `boldTextChanged`
iOS
| Fires when the state of the bold text toggle changes. The argument to the event handler is a boolean. The boolean is `true` when bold text is enabled and `false` otherwise. | | `grayscaleChanged`
iOS
| Fires when the state of the gray scale toggle changes. The argument to the event handler is a boolean. The boolean is `true` when a gray scale is enabled and `false` otherwise. |