
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@volkenomakers/intro-slider
Advanced tools

npm install @volkenomakers/intro-slideryarn add @volkenomakers/intro-sliderimport React from "react";
import { View } from "react-native";
import IntroSlider from "@volkenomakers/intro-slider";
import { Icon, Text } from "react-native-elements";
import { SafeAreaView } from "react-native";
const data = [
{
title: "Le lorem ipsum est, en imprimerie,",
description:
"Le lorem ipsum est, en imprimerie, une suite de mots sans signification utilisée à titre provisoire pour calibrer une mise en page, le texte définitif venant ",
image: "https://via.placeholder.com/150",
},
{
title: "Le lorem ipsum est, en imprimerie,",
description:
"Le lorem ipsum est, en imprimerie, une suite de mots sans signification utilisée à titre provisoire pour calibrer une mise en page, le texte définitif venant ",
image: "https://via.placeholder.com/150",
},
{
title: () => (
<Text style={{ fontSize: 18, fontWeight: "bold", marginVertical: 20 }}>
Title with custom component
</Text>
),
description: () => (
<Text>
Le lorem ipsum est, en imprimerie, une suite de mots sans signification
utilisée à titre provisoire pour calibrer une mise en page Le lorem
ipsum est, en imprimerie, une suite de mots sans signification utilisée
à titre provisoire pour calibrer une mise en page Le lorem ipsum est, en
imprimerie, une suite de mots sans signification utilisée à titre
provisoire pour calibrer une mise en page Le lorem ipsum est, en
imprimerie, une suite de mots sans signification utilisée à titre
provisoire pour calibrer une mise en page Le lorem ipsum est, en
imprimerie, une suite de mots sans signification utilisée à titre
provisoire pour calibrer une mise en page
</Text>
),
image: "https://via.placeholder.com/150",
},
];
const IntroSliderApp = () => {
return (
<SafeAreaView style={{ flex: 1, backgroundColor: "#000" }}>
<IntroSlider
data={data}
onEnd={() => console.log("slider end")}
titleStyle={{ fontSize: 40, color: "#0969da" }}
indicatorColor="#0969da"
descriptionStyle={{ fontSize: 16 }}
containerStyle={{ backgroundColor: "#EEE", flex: 1 }}
imageProps={{ resizeMode: "contain" }}
renderEndButton={() => (
<View
style={{
padding: 15,
borderRadius: 35,
overflow: "hidden",
backgroundColor: "#000",
alignItems: "center",
justifyContent: "center",
}}
>
<Icon
name="arrow-right"
type="material-community"
color={"#FFF"}
size={20}
/>
</View>
)}
renderNextButton={(activeIndex) => (
<View
style={{
padding: 15,
borderRadius: 35,
overflow: "hidden",
backgroundColor: "#0969da",
alignItems: "center",
justifyContent: "center",
}}
>
<Icon
name="arrow-right"
type="material-community"
color={"#FFF"}
size={20}
/>
</View>
)}
/>
</SafeAreaView>
);
};
export default IntroSliderApp;
| Property name | Type | Description |
|---|---|---|
| data | Array | array of object with keys (title,descriptio, imge) |
| onEnd | Function | callback to be called when the user click to the end button |
| imageProps | Object | props for the image |
| descriptionStyle | Object | Custom style for the text description |
| titleStyle | Object | Custom style for the title |
| containerStyle | Object | Custom style for the View container |
| indicatorColor | String | color of the indicators |
| indicatorSize | Number | size of the indicators |
| renderNextButton | Function | render the next button |
| renderEndButton | String | render the end button |
ISC Licensed
FAQs
a react native module developped by volkeno
We found that @volkenomakers/intro-slider 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.