fix: input placeholder color on android

This commit is contained in:
Fredrik Burmester
2024-08-11 14:17:53 +02:00
parent 694a5d6d21
commit 8ca9fba583

View File

@@ -10,6 +10,7 @@ export function Input(props: TextInputProps) {
allowFontScaling={false}
style={[{ color: "white" }, style]}
{...otherProps}
placeholderTextColor={"#9CA3AF"}
/>
);
}