We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"dependencies": { "@react-native-community/cameraroll": "^1.3.0", ..., "react-native-camera-roll-picker": "2.0.0", ..., }
Using react 16.9.0 Using react-native Expo SDK 36
16.9.0
Expo SDK 36
Referencing:
Having a console log before
CameraRoll.getPhotos(fetchParams) .then(data => this.appendImages(data), e => console.log(e));
will show that CameraRoll is not undefined.
CameraRoll
My view definition is something like this:
<TouchableOpacity style={[styles.container, this.props.containerStyle]} onPress={this.onActionsPress} > <Modal animationType={"slide"} transparent={false} visible={this.state.modalVisible} onRequestClose={() => { this.setModalVisible(false); }} > {this.renderNavBar()} <CameraRollPicker maximum={10} imagesPerRow={4} callback={this.selectImages} selected={[]} /> </Modal> {this.renderIcon()} </TouchableOpacity>
The text was updated successfully, but these errors were encountered:
Did you do link correctly like pod install?
Sorry, something went wrong.
Yes @theasc , I even linked the libraries manually and executed pod install on ios.
pod install
No branches or pull requests
"dependencies": {
"@react-native-community/cameraroll": "^1.3.0",
...,
"react-native-camera-roll-picker": "2.0.0",
...,
}
Using react
16.9.0
Using react-native
Expo SDK 36
Referencing:
Having a console log before
will show that
CameraRoll
is not undefined.My view definition is something like this:
The text was updated successfully, but these errors were encountered: