xxxxxxxxxx
import React from 'react';
import { TextInput } from 'react-native';
const App = () => {
return (
<TextInput
placeholder="Enter some text..."
placeholderTextColor="red" // Change this to the desired color
/>
);
};
export default App;
xxxxxxxxxx
<TextInput
placeholder="something"
placeholderTextColor="#000"
/>
// By Ray: https://stackoverflow.com/a/44739397