I\'m sure there is a way to do this, but I just can\'t see how yet.
What I\'d like to do, is add a Picker component, but rather than hard-code the list of items, fet
IMPORTANT: if you try to iterate an array of numbers with map then don't forget that label property of Picker.Item should be converted to string:
map
label
Picker.Item
const pickerItems = [1,2,3].map(i => ( ));