<View width="300px" maxWidth="100%"><Select options={[{ label: "Following", value: "1" }, { label: "Popular", value: "2" }, { label: "New & Noteworthy", value: "3" }]} name="sort" placeholder="Sort by" /></View>
Form fields have a required name property, so that's the only property you have to pass to Select to start using it. If you need to handle its change events - add an onChange property to it.
<Selectname="animal"placeholder="Select an animal"onChange={(args) => console.log(args)}options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/>
Same as when using native inputs in React, Select can be used as a controlled or uncontrolled component. By default, Select is uncontrolled and lets you define its default value using the defaultValue property. In this case, all change events are handled automatically. This approach is helpful when you're populating the field default value from a data source, but you don't need to control it manually afterward.
<Selectname="animal2"placeholder="Select an animal"defaultValue="dog"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/>
If you need to control the state of the field manually, you can use the value property. That will give you complete control of the component value and will stop handling the value automatically. You will have to update the state using the onChange handler and will be able to add custom logic before that happens.
<Selectname="animal3"placeholder="Select an animal"onChange={({ value }) => {/* Update your state here */}}value="dog"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/>
Select supports a content slot on the left side, which you can use for displaying text or other components.
<Selectname="animal6"placeholder="Select account"options={[{ label: "hello@uicapsule.com", value: "1" },{ label: "updates@uicapsule.com", value: "2" },]}startSlot={<Avatarsrc="https://pbs.twimg.com/profile_images/1096029593335676929/OZbE9ZXV_400x400.png"initials="D"size={4}/>}/>
For consistent Icon usage in text fields, you can use the icon property instead of startSlot and pass the icon SVG component.
<Selectname="animal"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}icon={IconZap}/>
Select comes in 3 sizes, with the medium size used by default. All sizes are aligned with sizes of other related components like Button or TextField.
<View gap={3}><Selectsize="medium"name="animal"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}icon={IconZap}/><Selectsize="large"name="animal"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}icon={IconZap}/><Selectsize="xlarge"name="animal"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}icon={IconZap}/></View>
Select supports responsive syntax for its size property, which means you can change its size based on the viewport.
<Selectsize={{ s: "medium", l: "xlarge" }}name="animal"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}icon={IconZap}/>
You can use hasError property to show the user that Select is not passing the form validation.
<Selectname="animal4"placeholder="Select an animal"hasErroroptions={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/>
Select can be disabled with the disabled flag. Remember that disabling the field will remove it from the form submit query.
<Selectdisabledname="animal5"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/>
To let the user know what data you expect them to type in, add labels or status messages to your fields with the help of the FormControl utility. In case you're using xlarge Select size, you can also combine it with the large FormControl size for better visual alignment.
Note: Don't use placeholders as labels for the fields as users won't see the placeholder when input contains a value.
<FormControl><FormControl.Label>Email</FormControl.Label><Selectname="animal7"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}/></FormControl>
<Selectname="animal8"placeholder="Select an animal"options={[{ label: "Dog", value: "dog" },{ label: "Turtle", value: "turtle" },]}inputAttributes={{ "aria-label": "Animal" }}/>