Please tell me how to display a notification as a notification when the app is launched for the first time.
Do you mean everytime the user opens the app, or only when they use the app for the first time?
What type of notification do you want to display to them? Is it a card, a modal or something else?
I want to show your app modally every time I open it.
You can check out this thread for some inspirations. You can’t trigger anything while opening the app, but maybe you can do it once every day.
Basically what I think you can do is have a “last signed in” timestamp column in user profiles table. Then:
-
If last signed in timestamp is not within today then show the modal and a button to “confirm” signing in for that day.
-
Else don’t display the modal.