The issue i'm facing is that the word "space" is read out by the screen reader when scrolling through this list. So for the example above it will read: "space", "one", "space", "two", "space", "three". This text is caused by the bulletpoint. I think it would be a good idea to add some accessibility labels to this bulletpoint so that it doesn't read out the word "space".
React Native Information
"react": "17.0.2",
"react-native": "0.68.5",
RNRH Version
6.3.4
Tested Platforms
[X] Android
[X] iOS
[ ] Web
[ ] MacOS
[ ] Windows
Reproduction Platforms
[X] Android
[X] iOS
[ ] Web
[ ] MacOS
[ ] Windows
Minimal, Reproducible Example
import React from 'react'
import { View } from "react-native";
import HTML from "react-native-render-html";
const Example = (): JSX.Element => {
const source = {html: "<ul><li>one</li><li>two</li><li>three</li></ul>"};
return (
<View>
<HTML source={source} />
</View>
);
};
export default Example;
Decision Table
<yyy>
is not rendered”Good Faith Declaration
Description
I am rendering an unordered list like in the example below:
The issue i'm facing is that the word "space" is read out by the screen reader when scrolling through this list. So for the example above it will read: "space", "one", "space", "two", "space", "three". This text is caused by the bulletpoint. I think it would be a good idea to add some accessibility labels to this bulletpoint so that it doesn't read out the word "space".
React Native Information
RNRH Version
6.3.4
Tested Platforms
Reproduction Platforms
Minimal, Reproducible Example
Additional Notes
No response