Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
rn-snackbar-component
Advanced tools
A snackbar component for Android and iOS, customizable and simple.
See Google Material Design for more info on Snackbars.
npm install --save rn-snackbar-component
import SnackBar from 'rn-snackbar-component'
<SnackBar
visible={true}
message="Hello There!"
actionHandler={() => {
console.log("snackbar button clicked!")
}}
action="let's go"
/>
<SnackBar
visible={true}
message={(
<View style={{ flex: 1, flexDirection: 'column'}}>
<Text>{title}</Text>
<TouchableOpacity activeOpacity={0.5} onPress={doSomething}>
<Text>{subtitle}</Text>
</TouchableOpacity>
</View>
)}
actionHandler={() => {
console.log("snackbar button clicked!")
}}
action={(
<Icon name="close" size={20} />
)}
autoHidingTime={0}
/>
Prop | Type | Effect | Default Value |
---|---|---|---|
visible | boolean | Show or hide the snackbar | none |
message | string / element | The main message text / your custom component | none |
actionHandler | function | Function to be called when button is pressed, if absent no action button is shown | none |
action | string / element | The text of action button, will be uppercased automatically / your custom component | none |
containerStyle | ViewStyle | The styling of snackbar container | none |
actionTextStyle | TextStyle | action button text style | { color: 'orange'} |
actionContainerStyle | ViewStyle | your custom component for action's style | none |
messageStyle | TextStyle | The style of message text | { color: '#ffffff'} |
distanceCallback | function | Function to be caled whenever snackbar moves in and out or changes layout, the function will be supplied a number indicating distance taken up by snackbar on bottom. | (distance) => {} |
bottom | number | The starting bottom position of snackbar | 0 |
top | number | The starting top position of snackbar | 0 |
position | string | The position of the snackbar: top, bottom | bottom |
autoHidingTime | number | How many milliseconds the snackbar will be hidden | 0 (Do not hide automatically) |
native | boolean | Using native driver | true |
FAQs
A snackbar component for Android and iOS
We found that rn-snackbar-component 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.