Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions __tests__/__snapshots__/App.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -16695,6 +16695,7 @@ exports[`TextInput Example Page 1`] = `
<TextInput
onChangeText={[Function]}
placeholder="A simple TextInput..."
placeholderTextColor="#505050"
style={
{
"borderColor": "#E6E6E6",
Expand Down Expand Up @@ -16937,6 +16938,7 @@ exports[`TextInput Example Page 1`] = `
multiline={true}
onChangeText={[Function]}
placeholder="Enter multiline text input here..."
placeholderTextColor="#505050"
scrollEnabled={false}
style={
{
Expand Down
2 changes: 2 additions & 0 deletions src/examples/TextInputExamplePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export const TextInputExamplePage: React.FunctionComponent<{navigation?: any}> =
}}
onChangeText={onChangeText1}
placeholder="A simple TextInput..."
placeholderTextColor={colors.text}
/>
</Example>
<Example
Expand All @@ -113,6 +114,7 @@ export const TextInputExamplePage: React.FunctionComponent<{navigation?: any}> =
multiline
scrollEnabled={false}
placeholder="Enter multiline text input here..."
placeholderTextColor={colors.text}
/>
</Example>
<Example
Expand Down