marcocesarato / react-native-input-validator

This library validates strings and number passed on TextInput component and highlight the result (valid green, invalid red). Optionally can have a placeholder with floating labels.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"outlineColor" is not a valid style property

yunau opened this issue · comments

commented

outlineColor: "transparent" needs to be removed in style.jsj file.

commented
input: {
    flex: 1,
    minHeight: 50,
    borderColor: '#FFF',
    borderBottomColor: '#CCC',
    backgroundColor: 'transparent',
    justifyContent: 'center',
    borderWidth: 1,
    color: 'black',
    fontSize: 20,
    borderRadius: 4,
    marginTop: 20,
    //outlineColor: "transparent". --> need to be removed
},

Done. Now should be fine on version 1.0.10. Thank you for your feedback