> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# PickerStyle

> Specifies the visual style of a Picker component.

```typescript theme={null}
type PickerStyle =
    | "automatic"
    | "segmented"
    | "inline"
    | "menu"
    | "navigationlink"
    | "palette"
    | "radiogroup"
    | "wheel";
```

<ParamField path="automatic" type="string">
  Automatically chooses the most appropriate style for the current context and platform.
</ParamField>

<ParamField path="segmented" type="string">
  Displays options as a segmented control with side-by-side buttons. Best for 2-5 options.
</ParamField>

<ParamField path="inline" type="string">
  Displays options inline within the current view.
</ParamField>

<ParamField path="menu" type="string">
  Displays options in a dropdown menu. Good for longer lists while conserving space.
</ParamField>

<ParamField path="navigationlink" type="string">
  Navigates to a separate screen to show options. Suitable for long lists in hierarchical navigation.
</ParamField>

<ParamField path="palette" type="string">
  Displays options in a grid or palette layout. Useful for visual options like colors.
</ParamField>

<ParamField path="radiogroup" type="string">
  Displays options as a vertical list of radio buttons.
</ParamField>

<ParamField path="wheel" type="string">
  Displays options in a spinning wheel picker. Classic iOS-style picker.
</ParamField>
