react-native-picker / picker

Picker is a cross-platform UI component for selecting an item from a list of options.
MIT License
1.49k stars 280 forks source link

HELP! android picker click issue #298

Closed baesumin closed 3 years ago

baesumin commented 3 years ago
  1. simulator
  1. real device

when i click 'picker', it gets dark in real device. what should i do?

Charlesb103 commented 3 years ago

Pretty sure I had a similar issue after updating RN. Changing the app theme seemed to fix it for me. Go to styles in res/values/styles.xml. Change your app theme style to: <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

baesumin commented 3 years ago

Pretty sure I had a similar issue after updating RN. Changing the app theme seemed to fix it for me. Go to styles in res/values/styles.xml. Change your app theme style to: <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

thank you!!!