NativeLayer.js 521 Bytes
Newer Older
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
1 2 3 4 5 6 7 8
const React = require("react-native");
const {
  View
} = React;

class NativeLayer extends React.Component {
  render () {
    const { width, height, children, ...rest } = this.props;
9
    return <View style={{ width, height, position: "relative", overflow: "hidden" }}>
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
10 11 12 13 14 15 16 17 18 19
      {React.Children.map(children, child =>
        <View style={{ width, height, position: "absolute", top: 0, left: 0, backgroundColor: "transparent" }}>
          {child}
        </View>
      )}
    </View>;
  }
}

module.exports = NativeLayer;