beefe / react-native-picker

A Native Picker with high performance.
1.75k stars 786 forks source link

android/iOS #419

Open 979136437 opened 3 years ago

979136437 commented 3 years ago

android 问题 PickerViewModule.java 文件下 import android.support.annotation.Nullable; private void sendEvent(ReactContext reactContext, String eventName, @Nullable WritableMap params) { reactContext .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class) .emit(eventName, params); } Nullable 为导致安装失败 iOS 问题 BzwPicker.m //按了取消按钮 -(void)cancleAction { ... // self.pick.hidden=YES; } self.pick.hidden=YES; 会导致 调用 show 时无法显示视图