在我的应用中,我想使用模态/对话框进行登录,当某些操作需要用户信息但用户未登录时,某些页面可以使用此功能。
这意味着我需要对这些页面做同样的事情。
有没有办法像这样创建一个模态:
class SomeView extends Components {
render() {
return (<Button onPress={this.onPress.bind(this)} title="toLogin"/>)
}
onPress() {
// dynamic create a Modal/Dialog and show
var dialog = new LoginDialog(...);
dialog.show();
}
}