SearchBar
搜索栏
Basic Example
Props
属性 | 说明 | 类型 | 默认值 |
---|---|---|---|
defaultValue | 默认值 | String | 无 |
value | 当前值 | String | 无 |
placeholder | 输入文本之前呈现的的提示信息 | String | 无 |
placeholderTextColor | placeholderTextColor | String | theme.color_text_placeholder |
onSubmit | submit 事件的回调 | (val: String): void | 无 |
onChange | change 事件的回调 | (val: String): void | 无 |
onFocus | focus 事件的回调 | (val: String): void | 无 |
onBlur | blur 事件的回调 | (val: String): void | 无 |
onClear | 清除事件的回调 | (val: String): void | 无 |
type | 默认样式(default)、圆角样式(radius) | String | default |
renderClear | 自定义清除按钮 | ReactNode | clear Image |
renderSearch | 自定义搜索放大镜 | ReactNode | search Image |