Gathering detailed insights and metrics for @carrybible/react-native-modalize
Gathering detailed insights and metrics for @carrybible/react-native-modalize
npm install @carrybible/react-native-modalize
Typescript
Module System
Node Version
NPM Version
33.7
Supply Chain
56.2
Quality
72.7
Maintenance
50
Vulnerability
94.1
License
TypeScript (95.99%)
JavaScript (2.54%)
Shell (1.47%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
3,070
Last Day
10
Last Week
13
Last Month
37
Last Year
313
MIT License
2,857 Stars
529 Commits
299 Forks
17 Watchers
8 Branches
36 Contributors
Updated on Feb 24, 2025
Latest Version
1.2.13
Package Id
@carrybible/react-native-modalize@1.2.13
Unpacked Size
76.56 kB
Size
18.31 kB
File Count
20
NPM Version
6.12.0
Node Version
10.12.0
Cumulative downloads
Total Downloads
Last Day
0%
10
Compared to previous day
Last Week
-13.3%
13
Compared to previous week
Last Month
54.2%
37
Compared to previous month
Last Year
-43.8%
313
Compared to previous year
A modal that loves scrollable content.
This component has been built with react-native-gesture-handler
to address the common issue of scrolling, swipping and handling the keyboard behaviors, you can face with react-native's modal. This component comes with a ScrollView, the default content renderer, a FlatList and a SectionList. They are all three built-in and make your life easier, just pass your content and Modalize will handle the rest for you.
1yarn add react-native-modalize
Check out react-native-gesture-handler
's documentation to set it up.
Here is the quick how-to example:
1import React, { useRef } from 'react'; 2import { View, Text, TouchableOpacity } from 'react-native'; 3import Modalize from 'react-native-modalize'; 4 5export const MyApp = () => { 6 const modalRef = useRef<Modalize>(null); 7 8 const onOpen = () => { 9 const modal = modalRef.current; 10 11 if (modal) { 12 modal.open(); 13 } 14 }; 15 16 return ( 17 <> 18 <TouchableOpacity onPress={onOpen}> 19 <Text>Open the modal</Text> 20 </TouchableOpacity> 21 22 <Modalize ref={modalRef}> 23 ...your content 24 </Modalize> 25 </> 26 ); 27}
The full documentation is available here. There is multiple examples runing through differents navigators, with more informations here.
No vulnerabilities found.
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 7/23 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
39 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-17
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