Back out "Change ImageBackground to work with percentage image sizes"

Summary:
Original commit changeset: cec3802d30b7

See my comment on original diff: D9307123

The diff regresses ImageBackground in some cases, so I'm reverting until we can re-work the diff to handle existing usages in an expected way.

Differential Revision: D9790698

fbshipit-source-id: 23ad670e004980f22bd1413eca3692f51beff717
This commit is contained in:
Logan Daniels 2018-09-12 12:23:34 -07:00 committed by Facebook Github Bot
parent 0c576ef84a
commit 6e980a826e
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ class ImageBackground extends React.Component<$FlowFixMeProps> {
// So, we have to proxy/reapply these styles explicitly for actual <Image> component. // So, we have to proxy/reapply these styles explicitly for actual <Image> component.
// This workaround should be removed after implementing proper support of // This workaround should be removed after implementing proper support of
// intrinsic content size of the <Image>. // intrinsic content size of the <Image>.
width: '100%', width: style.width,
height: '100%', height: style.height,
}, },
imageStyle, imageStyle,
]} ]}