diff --git a/Libraries/Components/Picker/PickerWindows.js b/Libraries/Components/Picker/PickerWindows.js index 73b082297b5..a86be257930 100644 --- a/Libraries/Components/Picker/PickerWindows.js +++ b/Libraries/Components/Picker/PickerWindows.js @@ -76,7 +76,7 @@ class PickerWindows extends React.Component<{ // Translate prop and children into stuff that the native picker understands. _stateFromProps = (props) => { - var selectedIndex = 0; + var selectedIndex = -1; const items = React.Children.map(props.children, (child, index) => { if (child.props.value === props.selectedValue) { selectedIndex = index;