discussions-and-proposals
discussions-and-proposals copied to clipboard
Accessibility focus order in React Native(ios)
Accessibility Issue:- I have set of big text area which has 3 sections, each sections are break down with '\n\n' new line . with this new line content section looks good, But the when im reading the content, its skipping those text area.and if i add single '\n' at end of the text, then its reading. any help highly appreciated
example:<Text> {Hi\n\nthis is a test message\n\nwith multiple para} </Text>
the same content is reading if we add \n as below<Text> {Hi\nthis is a test message\nwith multiple para} </Text>