We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<p> Add <span style="color:green">₹56</span> more to cart for <span style="color:green">FREE</span> Delivery</p>
the color green is not applying on the span tagged elements
The text was updated successfully, but these errors were encountered:
Not very elegant but I tricked it by recreating a custom node with the data inside.
Hope it will help few other like me :)
if (node.name == 'span') { const data = node.children[0].data; const width = Dimensions.get('window').width; return ( <View key={index} style={{ backgroundColor: 'red', borderRadius: 12, padding: 14, width: width - 24 }}> <Text style={{color: '#FFFFFF', fontSize: 14, lineHeight: 24}} > {data} </Text> </View> ) }
Sorry, something went wrong.
Please provide an version update with this Fix.
Do we have any updates? Please
No branches or pull requests
<p> Add <span style="color:green">₹56</span> more to cart for <span style="color:green">FREE</span> Delivery</p>
the color green is not applying on the span tagged elements
The text was updated successfully, but these errors were encountered: