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.
react-floting-button
Advanced tools
Floating button for React Native
yarn add react-floting-button
Or
npm install react-floting-button
first step: import the component:
import {FloatingButton} from "react-floting-button"
Second step: define the buttons
const actions = [
{
text: "Reload",
icon: "reload",
link: 'callback',
size:20,
color:'#555',
position: 1,
},
{
text: "Order",
icon: "food-fork-drink",
link: "foofScreen",
size:20,
color:'#555',
position: 2
},
]
Third step: use it
<FloatingButton
actions={actions}
text="$17.00"
title="pay"
navigation={navigation}
/>
import {FloatingButton} from "react-floting-button" ;
const actions = [
{
text: "Reload",
icon: "reload",
link: 'callback',
size:20,
color:'#555',
position: 1,
},
{
text: "Order",
icon: "food-fork-drink",
link: "foofScreen",
size:20,
color:'#555',
position: 2
},
]
export default class App extends Component {
constructor(props){
super(props)
}
render(){
const {navigation} = this.props ;
return (
<View style={styles.container}>
<View style={{flex:1,justifyContent:"center",alignItems:"center"}}>
<Text>Ici button exemple</Text>
</View>
<FloatingButton
actions={actions}
text="$17.00"
title="pay"
navigation={navigation}
/>
</View>
) ;
}
FloatingButton
Property | Type | Default | Description |
---|---|---|---|
actions | array | [] | Actions to be show once user press the main button |
color | string | #FFF | Color of the main button |
backgroundColor | string | #00B15E | background color of the main button |
AnimatedbackgroundColor | string | rgba(0,0,0,.2) | background color of view animated |
text | string | Title of main button is Required | |
title | string | label of main button when is clicked is Required | |
navigation | object | navigation props is Required when you are linked button to another screen |
Actions
Property | Type | Default | Description |
---|---|---|---|
text | string | Text to show near to the button. | |
icon | string | Icon to be rendered inside the action, we accept the name of icon refer to **'react-native-vector-icons/MaterialCommunityIcons' ** | |
link | string | the screen name where you want to go once the button click (route name) | |
size | number | size of Icon | |
color | string | Color of the Icon button | |
position | string | element positioning, at which position to display each button first, second or .. |
FAQs
Simple floating button component for react-native
The npm package react-floting-button receives a total of 1 weekly downloads. As such, react-floting-button popularity was classified as not popular.
We found that react-floting-button 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.