
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
rn-google-places-api-autocomplete
Advanced tools
A customizable autocomplete component made for React Native that interacts with the Google Places API, which has several ways to visualize the places.
A customizable autocomplete component made for React Native that interacts with the Google Places API, which has several ways to visualize the places.
npm i rn-google-places-api-autocomplete
yarn add rn-google-places-api-autocomplete
pnpm add rn-google-places-api-autocomplete
Get your Google Places API Key
GooglePlacesAutocomplete
component internally
uses @gorhom/bottom-sheet. You need to follow this
installation steps
You can take a look at the example
If you are going to use the bottom-sheet visualization mode, you need to configure the bottom sheet modal provider, like this:
import React from "react"
import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
import { GooglePlacesAutocomplete } from 'rn-google-places-api-autocomplete';
const App = () => {
return (
<BottomSheetModalProvider>
<GooglePlacesAutocomplete visualization="bottom-sheet" apiKey="12345" />
</BottomSheetModalProvider>
);
};
Controlled Field
import React, { useState } from 'react';
import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
import { GooglePlacesAutocomplete, BottomSheetOptionType } from 'rn-google-places-api-autocomplete';
const App = () => {
const [selectedOption, setSelectedOption] =
useState<BottomSheetOptionType | null>(null);
return (
<GooglePlacesAutocomplete
visualization='list'
apiKey='12345'
onChange={(option) => setSelectedOption(option)}
selectedOption={selectedOption}
/>
);
};
Limit results to one country
import React from 'react';
import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
import { GooglePlacesAutocomplete } from 'rn-google-places-api-autocomplete';
const App = () => {
return (
<BottomSheetModalProvider>
<GooglePlacesAutocomplete
visualization='bottom-sheet'
apiKey='12345'
query={{
components: 'country:co', // Limit to Colombia's Places
types: '(cities)', // Limit search to cities
language: 'es',// response in spanish
}}
/>
</BottomSheetModalProvider>
);
};
FAQs
A customizable autocomplete component made for React Native that interacts with the Google Places API, which has several ways to visualize the places.
We found that rn-google-places-api-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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.