
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
react-native-places-autocomplete
Advanced tools
React Native Google NearBy Place Search and places autocomplete (iOS/Android)
React Native Google NearBy Place Search and Places Autocomplete (iOS/Android)
Demo:
##Installation:
npm i -S react-native-places-autocomplete
##Usage:
When this component is loaded for the first time, it will show a list of NearBy Places. Then, when you start typing, a list of merchants will be shown near your location (which is by default within 500m radius).
import PlacesAutoComplete from 'react-native-places-autocomplete'
var SearchBar = require('react-native-search-bar'); // Optional but recommended on iOS
export default class SearchPlace extends Component {
constructor(props) {
super(props);
this.state = {}
}
render() {
return (
<View style={{flex: 1, marginTop: 64}}>
<PlacesAutoComplete
apikey="YOUR_API_KEY"
rankby="distance"
radius="500"
type="restaurant|department_store|pharmacy|night_club|movie_theater|bowling_alley|book_store|meal_delivery|meal_takeaway|lodging|bar"
iconColor="#FC1D47"
merchantNameColor="#37383B"
searchText={this.state.searchText}
searchInput={
<SearchBar
ref='searchBar'
placeholder='Search'
onChangeText={text => {
console.log(text);
this.setState({searchText: text});
}}
onSearchButtonPress={()=> {
}}
onCancelButtonPress={()=> {
}}
/>
}
onSelect={(details)=> { // When you select a merchant this will be triggered.
console.log(details);
}}
/>
</View>
);
}
}
NB: PRs are welcome
FAQs
React Native Google NearBy Place Search and places autocomplete (iOS/Android)
The npm package react-native-places-autocomplete receives a total of 58 weekly downloads. As such, react-native-places-autocomplete popularity was classified as not popular.
We found that react-native-places-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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.