skip to Main Content

React Native Errors – VirtualizedLists should never be nested inside plain ScrollViews

I'm working on a react-native app and I have to put GooglePlacesAutocomplete in a Scrollview.This is the following code. <ScrollView style={{flex: 1}> <GooglePlacesAutocomplete minLength={2} nearbyPlacesAPI={'GooglePlacesSearch'} debounce={400} placeholder="Origin Address" query={{ key: GOOGLE_MAPS_API_KEY, language: 'en', }} onFail={error => console.log(error)} enablePoweredByContainer={false} onPress={(data, details…

VIEW QUESTION
Back To Top
Search