Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/olofd/react-native-insta-photo-studio


https://github.com/olofd/react-native-insta-photo-studio

react-native

Last synced: about 1 month ago
JSON representation

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);
~~~