File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ const TextField = (props: InternalTextFieldProps) => {
176
176
< View style = { [ paddings , fieldStyle ] } >
177
177
< View row centerV >
178
178
{ leadingAccessory }
179
- < View flex >
179
+ < View flexG >
180
180
{ floatingPlaceholder && (
181
181
< FloatingPlaceholder
182
182
placeholder = { placeholder }
@@ -187,12 +187,13 @@ const TextField = (props: InternalTextFieldProps) => {
187
187
/>
188
188
) }
189
189
< Input
190
+ placeholderTextColor = { floatingPlaceholder ? 'transparent' : undefined }
190
191
{ ...others }
191
192
style = { [ typographyStyle , colorStyle , others . style ] }
192
193
onFocus = { onFocus }
193
194
onBlur = { onBlur }
194
195
onChangeText = { onChangeText }
195
- placeholder = { floatingPlaceholder ? undefined : placeholder }
196
+ placeholder = { placeholder }
196
197
hint = { hint }
197
198
/>
198
199
</ View >
You can’t perform that action at this time.
0 commit comments