shadcn_ui-input
Installation
SKILL.md
Shadcn UI — Input
Instructions
ShadInput displays a form input or input-like component. Use placeholder, initialValue, keyboardType, obscureText; optional leading and trailing widgets. For forms use ShadInputFormField with id, label, description, validator.
Basic
const ShadInput(
placeholder: Text('Email'),
keyboardType: TextInputType.emailAddress,
)
With leading and trailing
Example: password with toggle visibility: