question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can't select a item inside of ScrollView

See original GitHub issue

I can’t select a item inside of ScrollView. Sorry for the repetition question, but I can’t find solutions for it. My versions: React-Native: “0.61.5”, React-native-google-places-autocomplete: “^1.4.1”.

Example of me code:

<ScrollView style={styles.styleContainer} keyboardShouldPersistTaps="handled"> <GooglePlacesAutocomplete placeholder="Your address" minLength={1} autoFocus={false} returnKeyType={'default'} keyboardAppearance={'light'} listViewDisplayed={false} fetchDetails={true} renderDescription={row => row.description} onPress={(data: any, details = null) => { onChangeAddress(data.description); }} query={{ key: '***********', }} currentLocation={false} debounce={200} /> </ScrollView>

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:1
  • Comments:5

github_iconTop GitHub Comments

20reactions
nikolajordanovskicommented, Apr 28, 2020

@VTSingle Please add keyboardShouldPersistTaps="handled" to your ScrollView component

Read more comments on GitHub >

github_iconTop Results From Across the Web

Can't select items in tab bar on scroll view - Stack Overflow
Okay, so I have my tab bar set up in a nib. I'm not using a tab bar view controller, I've just dragged...
Read more >
How to embed List in ScrollView using SwiftUI
I want to allow user to scroll a long list of items iOS app, so I am trying to embbed a List view...
Read more >
How to lay out views in a scrolling grid - Hacking with Swift
Once you have your lay out defined, you should place your grid inside a ScrollView , along with as many items as you...
Read more >
Using a ScrollView - React Native
The ScrollView is a generic scrolling container that can contain multiple components and views. The scrollable items can be heterogeneous, ...
Read more >
AutoCompleteView: [UWP] Entry steals focus from everything ...
Run app, Select Violations Tab, select an item in the autocomplete view(first control on view), click on any non-focusable control like a label ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found