Skip to content

Commit

Permalink
Merge pull request #99 from Katedam/KATEDAM-unorderedlist-item-a11y
Browse files Browse the repository at this point in the history
Disable screen reader announcement "dot" for unordered list items
  • Loading branch information
iamacup authored Oct 16, 2020
2 parents 4f7e98b + 0b0dc3e commit 452470e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/renderRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ const renderRules = {
if (hasParents(parent, 'bullet_list')) {
return (
<View key={node.key} style={styles._VIEW_SAFE_list_item}>
<Text style={[modifiedInheritedStylesObj, styles.bullet_list_icon]}>
<Text
style={[modifiedInheritedStylesObj, styles.bullet_list_icon]}
accessible={false}>
{Platform.select({
android: '\u2022',
ios: '\u00B7',
Expand Down

0 comments on commit 452470e

Please sign in to comment.