How do I get to make React native Picker use Poppins-Medium Font? Been trying to make it work, but No, Its not responding as expected. I am using Android Studio, just that the font, does not respond as supposed.
Here is my source code snippet.
<View style={{ borderRadius: 5, borderWidth: 1,overflow: "hidden", height: 35, padding: 0,top:10, borderColor:'#00BB23' }}>
{
<Picker
style={{
width: 300,
height: 55,
fontSize: 25,
fontFamily:'Poppins-Medium',
borderBottonWidth: 1,
}}>
<Picker.Item label="Currency" value="accNum" />
<Picker.Item label="NGN" value="NGN" />
</Picker>
}
</View>
Where do i go, or what am I missing?
Use itemStyle props - it's style for text: