noinskit

Results 15 comments of noinskit

If anybody's interested, we implemented support for notification actions in a fork (pull request: https://github.com/MaikuB/flutter_local_notifications/pull/338). As @MaikuB wrote, it's not straightforward due to complexity of headless execution, so it's one...

@MaikuB I've seen that issue, but I think I'm not hitting it because I'm not using the same platform channel across more than one isolate (or maybe I misunderstood that...

@dluksza you're right, this is what https://github.com/MaikuB/flutter_local_notifications/pull/338 is doing as well.

Yeah, that PR I referred to has limitations and is essentially the "start small" approach. Instead of Firestore is uses shared_preferences (for data) and SendPort (for immediate notifications, if the...

FTR I also needed this feature to draw colored icons over some chart bars and I managed to work it around by putting the icons into a custom font using...

What's more, a simple dependency override is not enough this time, probably because the new freezed does not export `collection/collection.dart` anymore: ``` /flutter-pub-cache/hosted/pub.dartlang.org/device_preview-1.0.0/lib/src/views/tool_panel/sections/subsections/device_model.dart:125:9: Error: The method 'groupBy' isn't defined for...

I've got a similar use case, but with a local media stream (from navigator.mediaDevices.getUserMedia())... So I've got a MediaStream and MediaStreamTrack, and I can use them via MediaRecorder, but none...

I've had the same on health 3.1.1+1. It happened in production - I was not able to reproduce it myself.

FYI as a workaround, permissions merged from the plugin's AndroidManifest.xml can be removed in app's own AndroidManifest.xml like this: ```xml ```

It probably makes sense to update `example` and docs about `onDidReceiveBackgroundNotificationResponse` (the user-specified callback should have `@pragma('vm:entry-point')` for the same reason).