Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/olofd/react-native-insta-photo-studio
- Owner: olofd
- License: mit
- Created: 2016-10-11T20:48:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T18:20:58.000Z (about 6 years ago)
- Last Synced: 2024-11-19T13:07:57.762Z (2 months ago)
- Topics: react-native
- Language: JavaScript
- Size: 42.2 MB
- Stars: 40
- Watchers: 4
- 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);
~~~