reactjs - React Native TextInput placeholder text is slow to load -


i have react native app , when loads placeholder text in textinput box renders .6 seconds after else. app has quite bit of other components rendering , 1 render late , .6 seconds distracting user. here textinput code:

<textinput   ref='searchbar'   style={[styles.textfieldunfocused, this.state.searchfocused && styles.textfieldfocused]}   placeholder='search coins'   placeholdertextcolor='#a9b4b5'   selectioncolor='#0088c4'   onfocus={this._startfocus.bind(this)}   onendediting={this._endfocus.bind(this)}   onsubmitediting={keyboard.dismiss.bind(this)}   autocorrect={false}   returnkeytype='done'   clearbuttonmode='while-editing'   underlinecolorandroid='transparent'   onchangetext={(searchtext) => this._search(searchtext)} /> 


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -