All Projects → olofd → react-native-insta-photo-studio

olofd / react-native-insta-photo-studio

Licence: MIT License
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language
HTML
75241 projects
python
139335 projects - #7 most used programming language
shell
77523 projects

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);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].