diff --git a/Libraries/Image/ImageBackground.js b/Libraries/Image/ImageBackground.js index 3be306f8c40bb4..3995bfd47c7769 100644 --- a/Libraries/Image/ImageBackground.js +++ b/Libraries/Image/ImageBackground.js @@ -55,6 +55,15 @@ class ImageBackground extends React.Component { right: 0, top: 0, bottom: 0, + // Temporary Workaround: + // Current (imperfect yet) implementation of overwrites width and height styles + // (which is not quite correct), and these styles conflict with explicitly set styles + // of and with our internal layout model here. + // So, we have to proxy/reapply these styles explicitly for actual component. + // This workaround should be removed after implementing proper support of + // intrinsic content size of the . + width: style.width, + height: style.height, }, imageStyle, ]}