Input.Search
Import
import { Input } from "@dhua5922/react-native-kit";
Examples
Live Editor
function Example() { const [text, setText] = useState(""); return ( <Input.Search placeholder="Enter text for search here" value={text} onChange={(text) => setText(text)} /> ); }
Result
Loading...
Props
note
Include all props from Input.Text