Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempted fix for view parenting issue
Summary: View should reset whether we are inside of a text or not. For example, inline images should only be rendered inside text, but if we have a view inside text, then it should render a regular image, not an inline image. This logic *should* exist in native instead of in JS, but this is an easier change for now. I'm sad to have to turn this back into a JS component instead of just being the string 'RCTView' as this will have performance implications on all surfaces, but this is how it always used to be so maybe it's fine. This example previously crashed, and no longer does: ``` function PlaygroundContent(props: {}) { return ( <View style={styles.container}> <Text> <View style={{width: 10, height: 10}}> <Image source={fbicon.filled('chevron-down', 10)} /> </View> </Text> </View> ); } ``` Changelog: [General][Fixed] Fixes bug where <Text><View><Image> would crash. Reviewed By: JoshuaGross Differential Revision: D17564510 fbshipit-source-id: 0ecf49b3d466e7adf57a46a7a097dd3798c721a4
- Loading branch information