Skip to content

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

import { V99SearchBar } from 'v99-kits'

Example

        <V99Box paddingHorizontal={V99Spacing.s16} paddingTop={V99Spacing.s20}>
            <V99SearchBar
                value={''}
                placeholder={'Search'}
            />
        </V99Box>

Demo

Demo