NativeLayer.js 500 Bytes
Newer Older
1
import React, { View } from "react-native";
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
2 3 4 5

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

module.exports = NativeLayer;