I am looking for a work around to this React-SketchApp bug.
At time of posting this, my solution was to use flexbox on text that's not nested and give it the appearance that it's nested.
<Text style={myStyle}>This is a </Text><Bold>word</Bold><Text> in a sentence.</Text>
With a Style of:
flex-direction: row; justify-content: flex-start;
This will work for a situation where text is on the same line. But how about if say a bolded element is within a text block and not on a simple line, what can I do then? Maybe some fancy CSS or javascript trick?