V99SearchBar¶
I. Props¶
Name | Type | Default | Description |
---|---|---|---|
value | string | - | The value to show for the text input |
placeholder | string | - | The string that will be rendered before text input has been entered |
onChangeText | (text: string) => void | - | Callback that is called when the text input's text changes. |
II. Usage¶
Example¶
<V99Box paddingHorizontal={V99Spacing.s16} paddingTop={V99Spacing.s20}>
<V99SearchBar
value={''}
placeholder={'Search'}
/>
</V99Box>