
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-touch-through-view-jacky
Advanced tools
React Native Touch Through View is a simple component library that allows for scroll views and table views to scroll over interactable content without poor performing size and bounds animations.
React Native Touch Through View is a simple component library that allows for scroll views and table views to scroll over interactable content without poor performing size and bounds animations.
You can achieve Spotify or Apple maps style drawer effects with the full performance of UIScrollView and without laggy onScroll events.

Built to solve issues like http://stackoverflow.com/questions/39995024/propagate-touch-events-through-scrollview
Simply use react-native link react-native-touch-through-view to add the library
to your project.
import { TouchThroughView, TouchThroughWrapper } from 'react-native-touch-through-view';<TouchThroughWrapper> element.<TouchThroughView /> elements wherever you want the users touch to be passed through to the view behind. You can style these views just like any other view and put them anywhere in the view you want.eg.
// Markup for listview with a touch through header.
<TouchThroughWrapper style={styles.scrollWrapper}>
<ListView
style={styles.scroller}
dataSource={dataSource}
renderHeader={() => <TouchThroughView style={styles.touchThroughView} />}
renderRow={(rowData) => {
return (
<View style={styles.itemRow}>
<Text>{rowData}</Text>
</View>
)
}}>
</ListView>
</TouchThroughWrapper>
Have a look at the demo in the example directory if you need more help.
Currently we are working through an issue at #8 with Android devices on that latest version of React Native not properly passing through touch events.
Brought to you by the team at Rome2rio. Find out how to join our team at https://www.rome2rio.com/careers/
FAQs
React Native Touch Through View is a simple component library that allows for scroll views and table views to scroll over interactable content without poor performing size and bounds animations.
We found that react-native-touch-through-view-jacky 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.