显示通知时需要获取输出

时间:2018-12-30 23:03:11

标签: macos notifications observers applescript-objc notificationcenter

我正在做一个applescript可可应用程序,我想运行一个功能,通知显示为“ Finished Downloading”。 该功能更改可可应用程序主窗口中显示的值,并使用终端命令行创建通知。

我曾尝试使用观察者,但无法真正理解它们的工作原理,即使它可能是正确的用法,我也无法使它起作用。

//get user object
StreamBuilder<DocumentSnapshot>(
  stream: Firestore.instance
      .collection("users")
      .document(widget.uid)
      .snapshots(),
  builder:
      (BuildContext context, AsyncSnapshot<DocumentSnapshot> snapshot) {
    setState(() {
      user = snapshot.data.data as User;
    });

  },
);

由于显示器的右上角显示了名为“ Finished Downloading”的通知,因此该脚本应运行myFunction

希望获得帮助,谢谢。 亚历克斯

0 个答案:

没有答案