我正在使用Ionic,Angular Firebase构建应用程序。
我遇到一个独特的问题,如果用户在文本框中键入内容,并且会出现一个吐司,它会隐藏键盘并强制用户停止键入...是否有办法防止这种情况发生?
该应用程序是一个社交网络,因此人们会经常收到通知,并且代码也非常简单:
this.listenToNotifications().pipe(
tap(msg => {
let message = msg.body || "You have a new notification!";
const toast = this.toastCtrl.create({
message: message,
duration: 3000,
position: 'top',
showCloseButton: true,
closeButtonText: "Ok"
});
toast.present();
})
).subscribe()
有人知道解决方案吗?
谢谢:)