
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
react-native-image-selector
Advanced tools
This module is alternative version of https://github.com/react-native-image-picker/react-native-image-picker
The only change could be iOS (for iOS 14 limited selection issues).
So I created Image Viewer View Controller which only shows selected images (if user selected limited permission) only for iOS.
npm
$ npm install react-native-image-selector
yarn
$ yarn add react-native-image-selector
lerna
$ lerna add react-native-image-selector
$ lerna add react-native-image-selector --scope="@some/package"
iOS/info.plist
<key>PHPhotoLibraryPreventAutomaticLimitedAccessAlert</key>
<false/>
<key>NSCameraUsageDescription</key>
<string>카메라 권한을 얻겠습니다.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>사진을 가져오겠습니다.</string>
PHPhotoLibraryPreventAutomaticLimitedAccessAlert
// you can turn on this to if it is true, the permission alert will not be showed up every time when you request or check photo authorization.
android/AndroidManifest.xml
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
import ImageSelector, {
ImageSelectorOptions,
} from 'react-native-image-selector';
// ...
const options: ImageSelectorOptions = {
// import Options
title: '사진 선택',
cancelButtonTitle: '취소',
takePhotoButtonTitle: '사진 촬영',
chooseFromLibraryButtonTitle: '앨범에서 가져오기',
storageOptions: {
skipBackup: true,
path: 'images',
},
permissionDenied: {
title: '권한 설정',
text: "이 기능을 이용하시려면 권한을 '허용'으로 변경해주세요.",
reTryTitle: '변경하러가기',
okTitle: '닫기',
},
// iOS Only
iOSGridNumber: 4,
// iOS Only, should be upper than iOS 15.0 for 'pageSheet'
// default value is 'overFullScreen'
iOSModalPresentationStyle: 'pageSheet',
};
ImageSelector.launchPicker(options, (error, response) => {
if (error) {
if (error.code === ImageSelectorErrorType.CAMERA_PERMISSION_DENIED) {
console.error('camera permission denied');
}
return;
}
if (response) {
if (response.didCancel) {
console.log('USER CANCELED');
return;
}
setResponse(response);
}
});
$ yarn bootstrap
$ cd example
$ yarn start
$ yarn ios
$ yarn android
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
image picker native module
The npm package react-native-image-selector receives a total of 2 weekly downloads. As such, react-native-image-selector popularity was classified as not popular.
We found that react-native-image-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.