Full screen Lightbox for React Native

Our man, our React Native man Joel Arvidsson, is back again with a new Component.
This time he relies on the react-native-overlay to produce a Lightbox Component.

react-native-lightbox on GitHub (Example)

Images etc in Full Screen Lightbox Popovers for React Native

Lightbox

var Lightbox = require("react-native-lightbox");

var LightboxView = React.createClass({
  render: function () {
    return (
      <Lightbox>
        <Image
          style={{ height: 300 }}
          source={{
            uri: "http://knittingisawesome.com/wp-content/uploads/2012/12/cat-wearing-a-reindeer-hat1.jpg",
          }}
        />
      </Lightbox>
    );
  },
});