LogoCraftReactNative
Components

InputSearch

A text field component that allows users to search. It provides a customizable input field with support for left and right icons and different sizes. Based on React Native TextInput component.

Component preview

Usage

Screen.tsx
import { InputSearch } from "@/craftrn-ui/components/InputSearch";
 
export const Screen = () => (
  <InputSearch
    placeholder="Search for a destination"
    leftAccessory={
      <View style={styles.leftAccessory}>
        <Search color={theme.colors.contentTertiary} />
      </View>
    }
    rightAccessory={
      <ButtonRound
        renderIcon={(size) => (
          <Slider size={size} color={theme.colors.contentTertiary} />
        )}
        onPress={() => {}}
      />
    }
  />
);

Props

Inherit all props from TextInputProps.

PropTypeDefault

On this page