add color: 'green'; in your TextInput style will change the color
<TextInput style={styles.textInput} />
const styles = StyleSheet.create({
textInput: {
color: 'green',
},
});`
in native-base you will need to take care also of theming see docs