React Native ImagePicker (remobile)
A image picker for react-native, support for ios and android
Installation
npm install @remobile/react-native-image-picker --save
Installation (iOS)
- Drag RCTImagePicker.xcodeproj to your project on Xcode.
- Click on your main project file (the one that represents the .xcodeproj) select Build Phases and drag libRCTImagePicker.a from the Products folder inside the RCTImagePicker.xcodeproj.
- Look for Header Search Paths and make sure it contains both $(SRCROOT)/../../../react-native/React as recursive.
Installation (Android)
...
include ':react-native-image-picker'
project(':react-native-image-picker').projectDir = new File(settingsDir, '../node_modules/@remobile/react-native-image-picker/android/RCTImagePicker')
- In
android/app/build.gradle
...
dependencies {
...
compile project(':react-native-image-picker')
}
- register module (in MainApplication.java)
......
import com.remobile.imagePicker.RCTImagePickerPackage;
......
@Override
protected List<ReactPackage> getPackages() {
......
new RCTImagePickerPackage(),
......
}
Screencasts
Usage
Example
var React = require('react');
var ReactNative = require('react-native');
var {
StyleSheet,
View,
} = ReactNative;
var ImagePicker = require('@remobile/react-native-image-picker');
var Button = require('@remobile/react-native-simple-button');
var Dialogs = require('@remobile/react-native-dialogs');
module.exports = React.createClass({
onOpen() {
var options = {maximumImagesCount: 10, width: 400};
ImagePicker.getPictures(options, function(results) {
var msg = '';
for (var i = 0; i < results.length; i++) {
msg += 'Image URI: ' + results[i] + '\n';
}
Dialogs.alert(msg);
}, function (error) {
Dialogs.alert('Error: ' + error);
});
},
render() {
return (
<View style={styles.container}>
<Button onPress={this.onOpen}>Photo</Button>
</View>
);
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'transparent',
},
});
HELP
thanks
see detail use