diff --git a/src/app/(tabs)/home/index.tsx b/src/app/(tabs)/home/index.tsx index 74768af..81ffc8d 100644 --- a/src/app/(tabs)/home/index.tsx +++ b/src/app/(tabs)/home/index.tsx @@ -68,7 +68,7 @@ function HomeScreen() { contentContainerStyle={{ paddingHorizontal: 8 }} > - + {username ? `Welcome, ${username}` : 'Welcome!'} router.push('/settings')}> diff --git a/src/components/UserSelectorInput/styles.tsx b/src/components/UserSelectorInput/styles.tsx index 88506d1..734f782 100644 --- a/src/components/UserSelectorInput/styles.tsx +++ b/src/components/UserSelectorInput/styles.tsx @@ -14,7 +14,7 @@ export default StyleSheet.create({ marginBottom: 8, }, dropdown: { - height: 43, + height: 44, borderWidth: 1, borderRadius: 5, paddingHorizontal: 10, diff --git a/src/components/UserStringInput/UserStringInput.tsx b/src/components/UserStringInput/UserStringInput.tsx index da5457a..07961a9 100644 --- a/src/components/UserStringInput/UserStringInput.tsx +++ b/src/components/UserStringInput/UserStringInput.tsx @@ -23,8 +23,8 @@ export default function UserStringInput({ label, children, labelColor = '#000', - placeholderTextColor = '#000', - onChange = _ => {}, + placeholderTextColor = colors.darkGrey, + onChange = _ => { }, }: UserStringInputProps) { return (