
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
react-native-swipe-render
Advanced tools
An easy and simple to use React Native component that renders swipable performant pages for large lists or content. Supporting both iOS and Android. Free and made possible along with costly maintenance and updates by [Lue Hang](https://www.facebook.com/
An easy and simple to use React Native component that renders swipable performant pages for large lists or content. Supporting both iOS and Android. Check out the docs.
ScrollView
instead of ViewPagerAndroid
.Type in the following to the command line to install the module.
$ npm install --save react-native-swipe-render
or
$ yarn add react-native-swipe-render
Add an import
to the top of the file. At minimal, place array
data into the data
prop and render the pages using the renderItem
prop.
If you like
react-native-swipe-render
, please be sure to give it a star at GitHub. Thanks.
import SwipeRender from "react-native-swipe-render";
import { View, Image } from "react-native";
//...
render() {
return (
<SwipeRender
data={[
{ uri: "https://luehangs.site/pic-chat-app-images/pexels-photo-853168.jpeg" },
{ uri: "https://luehangs.site/pic-chat-app-images/animals-avian-beach-760984.jpg" },
{ uri: "https://luehangs.site/pic-chat-app-images/beautiful-beautiful-woman-beauty-9763.jpg" },
{ uri: "https://luehangs.site/pic-chat-app-images/photo-755745.jpeg" },
{ uri: "https://luehangs.site/pic-chat-app-images/photo-799443.jpeg" }
]}
renderItem={({ item, index }) => {
return (
<View key={"SwipeRender-slide#" + index} style={{flex: 1, backgroundColor: "#000"}}>
<Image
source={{ uri: item.uri }}
style={{flex: 1}}
resizeMode="contain"
/>
</View>
);
}}
// OPTIONAL PROP USAGE.
index={0} // default 0
loop={false} // default false
loadMinimal={true} // default false
loadMinimalSize={2}
horizontal={true} // default true
enableAndroidViewPager={false} // default ScrollView
// TO ENABLE AndroidViewPager:
// react-native >= 0.60 - install @react-native-community/viewpager separately
// react-native < 0.60 - ready to go!
/>
);
}
//...
Add an import
to the top of the file. At minimal, wrap any view in the <SwipeRender></SwipeRender>
.
If you like
react-native-swipe-render
, please be sure to give it a star at GitHub. Thanks.
import SwipeRender from "react-native-swipe-render";
import { View, Image, Text } from "react-native";
//...
render() {
return (
<SwipeRender
// OPTIONAL PROP USAGE.
index={0} // default 0
loop={false} // default false
loadMinimal={true} // default false
loadMinimalSize={2}
horizontal={true} // default true
enableAndroidViewPager={false} // default ScrollView
// TO ENABLE AndroidViewPager:
// react-native >= 0.60 - install @react-native-community/viewpager separately
// react-native < 0.60 - ready to go!
>
<View style={{flex: 1, backgroundColor: "#000"}}>
<Image
source={{ uri: "https://luehangs.site/pic-chat-app-images/pexels-photo-853168.jpeg" }}
style={{flex: 1}}
resizeMode="contain"
/>
</View>
<View style={{flex: 1, justifyContent: "center", alignItems: "center"}}>
<Text style={{color: "blue", fontSize: 25, fontWeight: "bold"}}>
Any kind of View
</Text>
</View>
<View style={{flex: 1, backgroundColor: "#000"}}>
<Image
source={{ uri: "https://luehangs.site/pic-chat-app-images/beautiful-beautiful-woman-beauty-9763.jpg" }}
style={{flex: 1}}
resizeMode="contain"
/>
</View>
</SwipeRender>
);
}
//...
If you like
react-native-swipe-render
, please be sure to give it a star at GitHub. Thanks.
import SwipeRender from "react-native-swipe-render";
import { View, Image } from "react-native";
//...
render() {
return (
<SwipeRender
data={[
{ uri: "https://luehangs.site/pic-chat-app-images/pexels-photo-853168.jpeg" },
{ uri: "https://luehangs.site/pic-chat-app-images/animals-avian-beach-760984.jpg" },
{ uri: "https://luehangs.site/pic-chat-app-images/beautiful-beautiful-woman-beauty-9763.jpg" },
{ uri: "https://luehangs.site/pic-chat-app-images/photo-755745.jpeg" },
{ uri: "https://luehangs.site/pic-chat-app-images/photo-799443.jpeg" },
// Test with 100s to 1000s of data to be rendered
// ...
// ...
// ...
]}
renderItem={({ item, index }) => {
return (
<View key={index} style={{flex: 1, backgroundColor: "#000"}}>
<Image
source={{ uri: item.uri }}
style={{flex: 1}}
resizeMode="contain"
/>
</View>
);
}}
index={3} // Initial index can be placed anywhere. Dynamic index support for only iOS.
loadMinimal={true}
loadMinimalSize={2}
removeClippedSubviews={true}
/>
);
}
//...
Learn more about the installation and how to use this package in the updated documentation page.
Pull requests are welcomed.
Contributors will be posted here.
Not sure where to start, or a beginner? Take a look at the issues page.
MIT © Lue Hang, as found in the LICENSE file.
FAQs
An easy and simple to use React Native component that renders swipable performant pages for large lists or content. Supporting both iOS and Android. Free and made possible along with costly maintenance and updates by [Lue Hang](https://www.facebook.com/
The npm package react-native-swipe-render receives a total of 139 weekly downloads. As such, react-native-swipe-render popularity was classified as not popular.
We found that react-native-swipe-render 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.