Install
npm install @carlos3g/element-dropdown
Migrate in two lines
- import { Dropdown } from 'react-native-element-dropdown';
+ import { Dropdown } from '@carlos3g/element-dropdown';
What you get
Active maintenance
Upstream bugs get triaged and fixed in every release. The roadmap is public and the changelog is honest.
Drop-in migration
Public API unchanged from react-native-element-dropdown@2.12.x. No native rebuild, no config changes, no peer-dep drift.
Signed releases
Every version is published via npm Trusted Publishing with provenance attestation. Anyone can verify the tarball came from this repository's CI.
Why this fork
The original package is unmaintained — a large open-issue backlog, plus clean community pull requests sitting untouched for years. If you're already on react-native-element-dropdown, you've likely hit one of these:
Invariant Violation: scrollToIndex out of rangewhen searching long lists- The list flashes at the wrong position for a frame when you reopen it
IDropdownRef/IMultiSelectRefaren't importable when you build for web or Expo- Every item has a non-overridable
padding: 17—itemContainerStylecan't shrink it MultiSelecttrigger usesplaceholderStyleeven after you've selected something
Fixed — along with plenty more. See the full context and the release notes.
Demo


Quick example
import { useState } from 'react';
import { Dropdown } from '@carlos3g/element-dropdown';
const data = [
{ label: 'Apple', value: 'apple' },
{ label: 'Banana', value: 'banana' },
];
export function FruitPicker() {
const [value, setValue] = useState(null);
return (
<Dropdown
data={data}
labelField="label"
valueField="value"
placeholder="Pick a fruit"
value={value}
onChange={(item) => setValue(item.value)}
/>
);
}
Need more? Head to Quick start.