Files
react-native/ReactAndroid/src/main/java/com/facebook/react
Emil Sjolander 3f49e743be Add percentage support to react native
Summary:
Adds support for percentage value in react native.

syntax: property: 100 | property | '100%'

supported properties:
padding
margin
width
height
minWidth
minHeight
maxWidth
maxHeight
flexBasis

```
class Playground extends React.Component {
  render() {
    return (
      <View style={{backgroundColor: 'white', padding: 10, paddingTop: 30, height: '100%'}}>
        <Text>
          If you want to quickly test out something,
          open the Playground.js file and start coding.
        </Text>
        <View style={{backgroundColor: 'red', height: 50, width: 50}}/>
        <View style={{backgroundColor: 'blue', height: '50%', width: '50%'}}/>
      </View>
    );
  }
}
```

Reviewed By: astreet

Differential Revision: D4376549

fbshipit-source-id: c41d68a7555396f95d063a7527ee081773ac56dc
2017-01-11 03:58:37 -08:00
..
2017-01-10 18:13:38 -08:00
2016-12-15 09:29:16 -08:00
2016-12-15 09:29:16 -08:00
2017-01-05 20:43:27 -08:00
2016-12-15 09:29:16 -08:00
2016-12-15 09:29:16 -08:00
2016-12-15 09:29:16 -08:00
2016-12-15 09:29:16 -08:00
2016-06-22 04:13:36 -07:00
2016-06-17 04:13:29 -07:00