Home > Software design >  I want to make a constant http request in dart language even if my flutter app is closed , is there
I want to make a constant http request in dart language even if my flutter app is closed , is there

Time:03-29

What I am trying to do is , I am making an app for apartment where if someone comes at the gate , security guard enters the detail of the visitor and who the visitor wants to meet, an alert will go to the person so that he can grant or reject access, if the person whom visitor wants to meet grants access the security guard will let visitor in , in my app I want to make a background service which will constantly make a http request so that even if the owner of the flat is not at home he can grant or reject the access to the visitor over the internet ,

there is lot more in app which is dependent on background service , any help is appreciated

CodePudding user response:

To run Flutter app in background, you can use this package - https://pub.dev/packages/flutter_background_service

  • Related