Mitch Hymel
Mitch Hymel
I can't seem to repro the issue. I set up an AVD running 6.0 and that code works fine: the notification is dismissed when clicked. Is it possible the value...
@rucuriousyet In version 0.0.3, I added the ability to enable/disable extra debug print/logging statements. These may help figure out what's going wrong. To enable logging: ``` await LocalNotifications.setLogging(true); ```
I haven't used travis jobs with this yet, so I'm not familiar with this. Just looking at the log, it could be because this plugin only supports iOS 10+, but...
Creating progress notifications is not currently supported by this plugin. Unfortunately, I'm not actively working on this plugin anymore and recommend checking out https://github.com/MaikuB/flutter_local_notifications in case this functionality is supported...
I have not had much free time recently, so I haven't been able to get around to this. I'd suggest checking out [flutter_local_notifications](https://github.com/MaikuB/flutter_local_notifications), see if that plugin supports this functionality,...
I'm not super familiar with iOS, but from a quick search, it seems like iOS only supports text for actions. On Android, this is definitely possibly, just not implemented yet....
This is definitely possible, but currently not supported by this plugin. I don't know when I'll have time to add more features like this. If a feature is missing in...
Custom layouts and "media style" layouts are not supported currently. I looked into this a little bit and it's definitely possible, but it will be a fair amount of more...
On the Android side of things, custom layout support from purely dart code is not possible. See [this stackoverflow post](https://stackoverflow.com/a/44120497). Essentially, the types of views allowed in a custom layout...