Currently, I am attempting to insert SVG icons within <Picker.Item /> utilizing the react-native-picker/picker library, but unfortunately, they are not displaying.
Below is a snippet of the code:
(language, index) => {
return(
<Picker.Item
label={ <EnglishFlag height={25} width={25} /> + language.name}
value={language.value}
key={index}
/>
)
});
It's important to note that I specifically want to use SVG icons and not emojis. Is there a way to achieve this while keeping the same structure?
Thank you in advance