Is there any way to add notification actions on iOS and Android? Without using flutter_local_notifications plugin?
For example, allowing the user to quickly reply in chat to a conversation by long-tapping the notification on iOS and pressing a "Reply" button? Or previewing an image on iOS and Android
We can show our own custom notifications using flutter_local_notifications, however, this means that we have to handle the OS notifications in a different way, to not show them (maybe sending silent notifications with only payload data)
Do we have to do this workaround (modifying the server code in order to not show the OS notification) to be able to be able to show custom actions, display new messages in "Conversation Notifications" tab on android, and other important features that are presen in serious messaging apps, only with flutter_local_notificaions?