skip to Main Content

I am working on flutter app which contains Step by Step Form i have to send notification to user every 3 days if the user have not fully filled the form. How do i do that ? I have only api from backend.

Want solution to this.

2

Answers


  1. This could be achieved using a background job scheduler like Celery in Python or any other suitable technology.

    Login or Signup to reply.
  2. First, you must create a project on the Firebase console then do Firebase configuration on the Flutter project and add google-service.json on the project then your app can receive notifications.
    The Firebase panel or your back-end APIs(you can run a job that sends notifications every 3 days) can send this notification.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search