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-native-textinput-material-autocomplete
Advanced tools
a simple textinput autocomplete using texinput by react-native-paper
react-native-textinput-material-autocomplete This is a package based on react-native-paper textinput material, this component allows you to filter objects from an array by typing in the text field
npm i react-native-textinput-material-autocomplete
import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { marcas } from "./utilities/marcas.json"
import { colores } from "./utilities/colores.json"
import Autocomplete from "react-native-textinput-material-autocomplete"
export default class FormCar extends React.Component {
constructor(props) {
super(props)
this.state = {}
}
render() {
return (
<View style={styles.container}>
<View style={{}}>
<View style={[styles.containerFields, { zIndex: 6 }]}>
<Autocomplete array={marcas} field="nombre" label="Brand" value={(val) => { }} error={() => { console.log("field invalid") }} > </Autocomplete>
</View >
<View style={[styles.containerFields, { zIndex: 5 }]}>
<Autocomplete error={() => { console.log("field invalid") }} array={colores} field="nombre" label="Color" value={(val) => { }} > </Autocomplete>
</View>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: 80,
paddingHorizontal: 30
},
containerFields: {
marginBottom: 10
}
});
FAQs
a simple textinput autocomplete using texinput by react-native-paper
We found that react-native-textinput-material-autocomplete 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.