From e1991f8f6b6a80137ee6d2c795076440577df91a Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Wed, 13 Jul 2016 21:56:35 -0700 Subject: [PATCH] [change] remove maxWidth from default View styles View's default styles include `maxWidth:"100%"` to fix a specific flexbox bug in Internet Explorer. But it's not needed for the default View layout and it limits the width of absolutely positioned elements (a bug). --- src/components/View/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/View/index.js b/src/components/View/index.js index 0456530b..bca651e5 100644 --- a/src/components/View/index.js +++ b/src/components/View/index.js @@ -142,7 +142,6 @@ const styles = StyleSheet.create({ // list reset listStyle: 'none', // fix flexbox bugs - maxWidth: '100%', minHeight: 0, minWidth: 0 },