From 8ca9fba583cdfcd46a759477716a6b2c28e5cf0d Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sun, 11 Aug 2024 14:17:53 +0200 Subject: [PATCH] fix: input placeholder color on android --- components/common/Input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/common/Input.tsx b/components/common/Input.tsx index 2a3602c2..b8988c0b 100644 --- a/components/common/Input.tsx +++ b/components/common/Input.tsx @@ -10,6 +10,7 @@ export function Input(props: TextInputProps) { allowFontScaling={false} style={[{ color: "white" }, style]} {...otherProps} + placeholderTextColor={"#9CA3AF"} /> ); }