Can't select a item inside of ScrollView
See original GitHub issueI 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:
- Created 3 years ago
- Reactions:1
- Comments:5
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@VTSingle Please add
keyboardShouldPersistTaps="handled"
to your ScrollView componentThis helped: https://github.com/FaridSafi/react-native-google-places-autocomplete/issues/478#issuecomment-573344080