We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 时无法显示视图
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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 时无法显示视图
The text was updated successfully, but these errors were encountered: