I'm looking for a mobile app development Python framework (possibly Kivy or Flet or something similar) that allows me to build an Android app with local push notifications that have buttons. So far I have seen the following:
- Make dynamic notification in Kivy
- This example appears to support desktop only
- Flutter local notifications with buttons
- This requires installing the awesome_notifications plugin for Flutter. Since I'm looking for a python framework only that leaves me with Flet, but I'm not sure if Flet can wrap Flutter widgets that aren't included in the standard library
I've only seen examples on Kivy for simple notifications (via plyer). I would like the notification to have buttons on it that allow the user to interact with the notification. Is there a Python framework thats allows me to do this?
Thanks