You should use the Item
from the Picker
component to get this work.
There are two possible ways to do it.
const PickerItem = Picker.Item;
and than using this <PickerItem>
component later on.
Or you just use the Component directly
<Picker.Item style={{fontFamily: 'SourceSansPro-Regular'}} label={address.id} value={address.id} key={i}/>