Gathering detailed insights and metrics for rn-modal-picker-awesome
Gathering detailed insights and metrics for rn-modal-picker-awesome
Gathering detailed insights and metrics for rn-modal-picker-awesome
Gathering detailed insights and metrics for rn-modal-picker-awesome
npm install rn-modal-picker-awesome
Typescript
Module System
Node Version
NPM Version
72.8
Supply Chain
94.2
Quality
75.3
Maintenance
100
Vulnerability
99.6
License
JavaScript (67.89%)
Objective-C (17.6%)
Python (7.78%)
Java (6.73%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
6 Stars
7 Commits
1 Forks
1 Watchers
1 Branches
1 Contributors
Updated on Sep 04, 2019
Latest Version
1.1.1
Package Id
rn-modal-picker-awesome@1.1.1
Unpacked Size
361.77 MB
Size
152.90 MB
File Count
6,026
NPM Version
5.6.0
Node Version
9.11.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
make sure you have installed react-native-vector-icons & linked it :) , or install
1$ yarn add react-native-vector-icons || npm i --save react-native-vector-icons 2Then link 3$ react-native link react-native-vector-icons
1<Modal 2 onSelectOption={(option) => console.log('@option/options', option)} 3 modalOptions={[ 4 {name:'Option 1', value:'1'}, 5 {name:'Option 2', value:'2'}, 6 {name:'Option 3', value:'3'}, 7 {name:'Option 4', value:'4'}, 8 {name:'Option 5', value:'5'}, 9 ]} 10 visible={this.state.visible} 11 autoClose={true} 12 multiple={false} 13/>
1$ yarn add rn-modal-picker-awesome 2or 3$ npm i --save rn-modal-picker-awesome
name | purpose | usage |
---|---|---|
onSelectOption | this func help to get selected [ option, options] depend on your multiple case | onSelectOption={(option) => console.log('@Option/options ',option)} |
name | default | usage | description | type |
---|---|---|---|---|
visible | false | visible={true/false} | show/hide Modal | bool |
multiple | false | multiple={false/true} | if true enable multi select options | bool |
autoClose | false | visible={false/true} | close automatic after select option in case multiple={false} otherwise will close automatice after all options has been selected in case multiple={true} | bool |
modalOptions | [{ name:'Option 1', value: '1' }, ...] | modalOptions=[{name:'', value:''},{...},...etc] | modal Options Prop must be an array of objects contains name & value | array |
selectedOptions | null | selectedOptions=[{value:'1'},{...}] | works only with multiple selection , and this will mark your values as selected , | array |
selectedOption | null | selectedOption={{value:'1' }} | works only with single selection | Object |
animateType | 'slide' | animateType='slide' | change modal animation from [ 'slide', 'fade' ] | string |
modalBackground | '#fff' | modalBackground='#ccc' | change modal background color | string |
modalHeaderBackground | '#fff' or modalBackground if changed | modalHeaderBackground='#eee' | modal header by default inherit the modalBackground color, but in case you need to change it seperately , do it :) | string |
closeIconName | 'ios-close-circle-outline' | closeIconName='name-of-icon' | this will change your icon , here is list of icons can be used IonicIconsList | string |
closeIconText | 'Close' | closeIconText='string' | change the close icon text | string |
closeIconStyle | {} | closeIconStyle={{}} | overwrite the style of close icon with new style | object |
closeIconTextStyle | {} | closeIconTextStyle={{}} | overwrite the style of close icon text with new style | object |
doneIconName | 'ios-checkmark-circle-outline' | doneIconName='name-of-icon' | this will change your icon , here is list of icons can be used IonicIconsList | string |
doneIconStyle | {} | doneIconStyle={{}} | overwrite the style of done icon with new style | object |
doneIconTextStyle | {} | doneIconTextStyle={{}} | overwrite the style of done icon text with new style | object |
doneIconText | 'string' | doneIconText='string' | change the done icon text | string |
titleStyle | {} | titleStyle={{}} | overwrite style of title with new style | object |
titleText | 'Title Of Modal' | titleText='string' | change title of header | string |
optionContainerStyle | {} | optionContainerStyle={{}} | change style of option Conatiner | object |
optionTextContainerStyle | {} | optionTextContainerStyle={{}} | change style of optionText View | object |
optionTextStyle | {} | optionTextStyle={{}} | change style of option text | object |
optionCircleColor | '#4caf50' | optionCircleColor='color' | change the color of circle | string |
optionCircleInnerColor | '#4caf50' | optionCircleInnerColor='color' | inner circle will inherit color from the main circle, but in case want to change , do it :) | string |
No vulnerabilities found.
Reason
0 existing vulnerabilities detected
Reason
binaries present in source code
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More