maxkordiyak / react-native-dropdown-autocomplete

Autocomplete input with dropdown modal component for React native. Useful for pages with multiple autocomplete's.
MIT License
100 stars 51 forks source link

Blank keyboard appears after suggestions popup. #44

Open usmankhan495 opened 4 years ago

usmankhan495 commented 4 years ago

Hi I am having the issue with keyboard on android. Blank keyboard is showing.

<SafeAreaView>
            {autocompletes.map(() => (
              <Autocomplete
                key={shortid.generate()}
                style={styles.input}
                placeholder={name}

                inputStyle={{color:"white"}}

                scrollToInput={ev => scrollToInput(ev)}
                handleSelectItem={(item, id) => this.handleSelectItem(item, id)}
                onDropdownClose={() =>{ 

                  onDropdownClose()
                  }}
                onDropdownShow={() =>{ 

                  onDropdownShow()}}

                noDataText={name}
                data={communities}
                minimumCharactersCount={0}
                highlightText
                valueExtractor={item => item}
                rightContent
                rightTextExtractor={item => item.properties}
              />

keyboard_error

WeeCoopTech commented 4 years ago

Any solutions ? Noone? I have the same problem.

CharlotteRdn commented 4 years ago

Nobody's able to help ? Same problem here....

WeeCoopTech commented 4 years ago

I don't know if you have this at the end of your file : export default withKeyboardAwareScrollView(fileName); If you remove it, the bug disappear.