https://github.com/olofd/react-native-insta-photo-studio
  
  
     
    https://github.com/olofd/react-native-insta-photo-studio
  
react-native
        Last synced: 7 months ago 
        JSON representation
    
- Host: GitHub
- URL: https://github.com/olofd/react-native-insta-photo-studio
- Owner: olofd
- License: mit
- Created: 2016-10-11T20:48:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T18:20:58.000Z (almost 7 years ago)
- Last Synced: 2025-03-26T12:47:07.884Z (7 months ago)
- Topics: react-native
- Language: JavaScript
- Size: 42.2 MB
- Stars: 40
- Watchers: 3
- Forks: 2
- Open Issues: 5
- 
            Metadata Files:
            - Readme: README.md
- License: LICENSE
 
Awesome Lists containing this project
README
          # react-native-insta-photo-studio
`npm i react-native-insta-photo-studio --save`
Demo 1: https://www.youtube.com/edit?video_id=w2MZMxMO0js
~~~js
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 (
      
    );
  }
}
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);
~~~