react-native-insta-photo-studio

A component for croping/filtering and selecting photos in React-Native

Usage no npm install needed!

<script type="module">
  import reactNativeInstaPhotoStudio from 'https://cdn.skypack.dev/react-native-insta-photo-studio';
</script>

README

react-native-insta-photo-studio

npm i react-native-insta-photo-studio --save

Demo 1: https://www.youtube.com/edit?video_id=w2MZMxMO0js

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native';
import ReactNativeInstaPhotoStudio from 'react-native-insta-photo-studio';

export default class HelloRN extends Component {
  render() {
    return (
      <ReactNativeInstaPhotoStudio></ReactNativeInstaPhotoStudio>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

AppRegistry.registerComponent('HelloRN', () => HelloRN);