react-native-insta-photo-studio
v0.1.0
Published
A component for croping/filtering and selecting photos in React-Native
Downloads
27
Maintainers
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);