
Research
wget to Wipeout: Malicious Go Modules Fetch Destructive Payload
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
stepper-react-native
Advanced tools
A simple and fully customizable React Native component that implements a onboarding stepper.
yarn add stepper-react-native
npm i stepper-react-native
import {Onboarding} from 'stepper-react-native'
//components
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import Step1 from './src/components/step1';
import {Onboarding, ScreensType} from 'stepper-react-native'
export default function App() {
const steps: ScreensType[] = [{
scrollable: true,
screen: <Step1 description='This is the first' />
},
{
scrollable: false,
screen: <Step1 description='This is the second' />
},
{
scrollable: false,
screen: <Step1 description='This is the third' />
}];
const handleOnNext = () => {
console.log("ON next");
};
const handleOnBack = () => {
console.log("ON BAck");
};
const handleFinish = () => {
console.log("Oh Finish...");
};
return (
<View style={styles.container}>
<View style={styles.container}>
<Onboarding
screens={steps}
onNext={() => handleOnNext()}
onPrevious={() => handleOnBack()}
onFinish={() => handleFinish()}
/>
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
import {ViewStyle} from "react-native";
import React from "react";
type ScreensType = {
scrollable?: boolean;
screen: React.ReactElement
}
type ActionsBoardingType = {
onFinish?: () => void;
onNext?: () => void;
onPrevious?: () => void;
footerStyle?: ViewStyle;
}
type ConfigTypes = {
colorIcons?: string;
containerStyle?: ViewStyle;
sizeIcons?: number
}
type MainPropsType = ActionsBoardingType & {
screens: ScreensType[];
config?: ConfigTypes
}
FAQs
Onboarding component
We found that stepper-react-native 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.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.