问题标签 [flutter-notification]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 在颤动的通知中显示小部件
我想使用颤振在通知中显示一个小部件。我正在使用 awesome_notifications 包,但我无法达到同样的效果。
在这个片段中有一个 bigPicture 参数,它需要图像的 url。我已使用 repaintBoundary 将小部件转换为图像。有什么方法可以传递图像小部件而不是 url?谢谢你。
flutter - 显示闪光灯时无法点击颤动屏幕
我正在使用Flash包,但每次调用该showFlash
函数并Flash.dialog
显示 a 时,Flash 下方的屏幕不再检测手势,只有在再次关闭闪光灯时才会检测到手势。
这是我在整个应用程序中调用的闪光灯,以可视化成功的操作。
当状态改变时,这就是我在应用程序内部调用 flash 的方式:
我很想知道这种行为是否是有意的,如果它是一个错误,如何修复它。
flutter - 应用程序终止时直接向特定屏幕推送通知
当从终止状态点击通知时,我希望用户登陆到特定屏幕。我知道getInitialMessage()
处理来自终止状态的通知,但它似乎没有导航到我想要的屏幕。
这是代码:
如您所见,我想导航到订单屏幕,但我却登陆了登录页面。我错过了什么?当通知从后台状态或前台状态被点击时,它工作正常,但不是从终止状态。
flutter - 如果应用程序已打开,则 Flutter Local Notifications onSelectNotification Navigator 不起作用
我在 Flutter Local Notifications 的 onSelectNotification 中使用 Navigator,如果在我设置通知时应用程序已经在运行,Navigator 工作正常,如果应用程序关闭并通过通知打开它也工作正常,因为我使用了 didNotificationLaunchApp。 但是,如果应用程序在设置通知后关闭,并在收到通知之前再次打开,则导航器根本不起作用。有什么建议么?
这是代码
flutter - I’m creating a birthday reminder app in flutter, I’ve done everything except setting schedule notification on the specific date of birth Enter by user
I’ve implemented these things
- Databas.
- showing the records in list view
- There’s a add button to add user name, date of birth
- Local notification as well
Problem is ,how to setup notification reminder on the specific date enter by the user so that the app remind me the birthday of the person
android - Flutter 每周重复通知
实际上我想在颤动中显示每周通知,我找不到我在这里问的方法:-)
因此,在我的应用程序中,用户可以安排时间表并据此获得通知。并且用户可以为一周中的所有 7 天(星期一、星期二 ...定于星期二,它将在星期二重复,依此类推。
我正在使用此代码,但它不起作用,谁能帮我找出问题所在。
如果我把它安排在今天,那么它会起作用,但如果我把它安排在第二天或前一天,它似乎不起作用。
先感谢您。
flutter - 为什么在颤动中点击通知时路由不起作用?(项目基于GetX和flutter本地推送通知包)
再会。我知道我们使用 onSelectNotification 属性来获取当用户在使用颤振本地推送通知包时点击通知时的回调。
这是 _onSelectsNotification 函数。
我不确定在上下文中使用什么。我认为 NotificationView() 的下一条路径由于上下文值而不起作用。你能帮我解决这个问题吗?我现在使用 GetX 进行状态管理。
谢谢。
flutter - 我想在我的颤振应用程序中向特定的用户组发送通知。我怎样才能实现它?
在我的 Firestore 中,我有一个集合 GROUPS,其中它们是多个组。每当向群组添加新消息时,我只想向该群组的成员发送通知。
flutter - 如何将flutter_local_notification设置为每天、每周、每月或每年重复,不包括指定日期之前的几天?
我尝试过使用,matchDateTimeComponents
但默认行为是它还包括指定日期之前的所有天数?
文档中的示例:
例如,如果日期和时间当前是 2020-10-19 11:00(即 2020 年 10 月 19 日上午 11:00),并且 scheduleDate 是 2020-10-21 10:00,并且 matchDateTimeComponents 的值是 DateTimeComponents.time,那么下次出现通知的时间是 2020-10-20 10:00。