reactjs - InputText bottom border disappears automatically all of sudden -


i'm seeing inputtext bottom border disappears automatically of sudden. if restart application in simulator, see border again. disappears when make change pushes hot-reload in simulator. i'm 100% sure, not because of changes because if restart app in simulator, see bottom border again. i'm using rn 0.30 , android simulator. know what's happening? please see picture below. enter image description here

       <textinput           placeholder="title"           style={styles.inputfield}           placeholdertextcolor={theme.placeholdertextcolor}           maxlength={50}           returnkeytype={'next'}           ref={(c) => { this._fieldtitle = c; }}           value={title}           onfocus={() => {             this.inputfocused(this._fieldtitle);             this.setstate({ showtitlelabel: true });           }}           onchangetext={(title) => this.setstate({ title })}           onendediting={this._validatetitle}           onblur={() => {             if (title === null || title === '') {               this.setstate({ showtitlelabel: false });             }           }}         /> 


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -