halilb / react-native-textinput-effects

Text inputs with custom label and icon animations for iOS and android. Built with react native and inspired by Codrops.
MIT License
2.98k stars 291 forks source link

labelStyle don't work with Makiko? #82

Closed rodrigofbm closed 5 years ago

rodrigofbm commented 6 years ago

v: ^0.4.2 RN: 0.55.4


<Makiko
 label={'DIGITE O NOME DO PRODUTO'}
 iconClass={FontAwesomeIcon}
 iconName={'comment'}
 iconColor={'white'}
 labelStyle={{ color: '#91627b' }}
 inputStyle={{ color: '#91627b' }}    
 />
halilb commented 5 years ago

Thanks for reporting @rodrigofbm.

Label is using the same color with icon in Makiko. So it should work when you change iconColor:

<Makiko
   label={'DIGITE O NOME DO PRODUTO'}
   iconClass={FontAwesomeIcon}
   iconName={'comment'}
   iconColor={'#91627b'}
   labelStyle={{ color: '#91627b' }}
   inputStyle={{ color: '#91627b' }}    
 />