Search code examples
flutterdartalarmmobile-development

How to trigger an alarm after a certain event in flutter?


I'm developing an app in flutter and, after a certain event occurs in the background, I need to trigger an alarm that alert the user. I was only able to trigger a pop-up notification but not an alarm. How can I do?


Solution

  • For the android part you can use the package "android_alarm_manager": https://pub.dev/packages/android_alarm_manager

    I've also checked if there is something equivalent for iOS, but unfortunately it seems like there isn't because of the following reasons answered in this post: iOS alternative for Android AlarmManager

    I'm new to stackoverflow but hope this could help.