Gathering detailed insights and metrics for react-native-modalize
Gathering detailed insights and metrics for react-native-modalize
Gathering detailed insights and metrics for react-native-modalize
Gathering detailed insights and metrics for react-native-modalize
npm install react-native-modalize
Typescript
Module System
Node Version
NPM Version
62.2
Supply Chain
56.7
Quality
66.8
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
6,409,867
Last Day
778
Last Week
33,345
Last Month
135,837
Last Year
1,635,089
MIT License
2,856 Stars
529 Commits
299 Forks
17 Watchers
8 Branches
36 Contributors
Updated on Feb 15, 2025
Latest Version
2.1.1
Package Id
react-native-modalize@2.1.1
Unpacked Size
64.11 kB
Size
16.08 kB
File Count
25
NPM Version
8.11.0
Node Version
16.16.0
Cumulative downloads
Total Downloads
Last Day
-39.1%
778
Compared to previous day
Last Week
-2.5%
33,345
Compared to previous week
Last Month
29.1%
135,837
Compared to previous month
Last Year
-4.6%
1,635,089
Compared to previous year
3
19
A highly customizable modal/bottom sheet that loves scrolling content.
This component has been built with react-native-gesture-handler
to address the common issue of scrolling, swiping and handling the keyboard behaviors, you can face with react-native's modal.
This component comes with a ScrollView, the default renderer, a FlatList or 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. You can also have the possibility to pass your own custom renderer.
1yarn add react-native-modalize react-native-gesture-handler
1npx pod-install ios
Follow this guide to complete the Android installation.
You don't need to follow the guide mentioned above because autolinking from React already did the steps.
Here is a quick example, using the default ScrollView renderer.
1import React, { useRef } from 'react'; 2import { View, Text, TouchableOpacity } from 'react-native'; 3import { Modalize } from 'react-native-modalize'; 4 5export const App = () => { 6 const modalizeRef = useRef<Modalize>(null); 7 8 const onOpen = () => { 9 modalizeRef.current?.open(); 10 }; 11 12 return ( 13 <> 14 <TouchableOpacity onPress={onOpen}> 15 <Text>Open the modal</Text> 16 </TouchableOpacity> 17 18 <Modalize ref={modalizeRef}>...your content</Modalize> 19 </> 20 ); 21};
Please check out the full documentation available here to find all about the props, methods and examples of Modalize's usage.
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@romamd555/react-native-modalize
A highly customizable modal/bottom sheet that loves scrolling content.
react-native-patch-modalize
A highly customizable modal/bottom sheet that loves scrolling content.
@carrybible/react-native-modalize
A modal that loves scrollable content.
@adrianso/react-native-modalize
A modal that loves scrollable content.