Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.75/accessibilityinfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,15 @@

Add an event handler. Supported events:

| Event name | Description |

Check failure on line 90 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `··········`
| ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

Check failure on line 91 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `----------`
| `accessibilityServiceChanged`<br/><div class="label two-lines android">Android</div> | 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`<br/><div class="label two-lines ios">iOS</div> | Fires when the screen reader has finished making an announcement. The argument to the event handler is a dictionary with these keys:<ul><li>`announcement`: The string announced by the screen reader.</li><li>`success`: A boolean indicating whether the announcement was successfully made.</li></ul> |

Check failure on line 92 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `··········`
| `boldTextChanged`<br/><div class="label two-lines ios">iOS</div> | 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. |

Check failure on line 93 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Replace `·····················` with `···········`
| `grayscaleChanged`<br/><div class="label two-lines ios">iOS</div> | 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. |

Check failure on line 94 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Replace `····················` with `··········`
| `invertColorsChanged`<br/><div class="label two-lines ios">iOS</div> | Fires when the state of the invert colors toggle changes. The argument to the event handler is a boolean. The boolean is `true` when invert colors is enabled and `false` otherwise. |

Check failure on line 95 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `··········`
| `reduceMotionChanged` | Fires when the state of the reduce motion toggle changes. The argument to the event handler is a boolean. The boolean is `true` when a reduce motion is enabled (or when "Transition Animation Scale" in "Developer options" is "Animation off") and `false` otherwise. |

Check failure on line 96 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Replace `································································` with `······················································`
| `reduceTransparencyChanged`<br/><div class="label two-lines ios">iOS</div> | Fires when the state of the reduce transparency toggle changes. The argument to the event handler is a boolean. The boolean is `true` when reduce transparency is enabled and `false` otherwise. |

Check failure on line 97 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `··········`
| `screenReaderChanged` | Fires when the state of the screen reader changes. The argument to the event handler is a boolean. The boolean is `true` when a screen reader is enabled and `false` otherwise. |

Check failure on line 98 in website/versioned_docs/version-0.75/accessibilityinfo.md

View workflow job for this annotation

GitHub Actions / lint

Delete `··········`

---

Expand Down
Loading