clragon

Results 130 comments of clragon

Well, it has been stated before that "`flutter_local_notifications` tries to avoid external dependencies", so I suppose we could use [desktoasts](https://pub.dev/packages/desktoasts) as a template but we would need to implement our...

I would also be greatly interested in being able to store notes in subfolders. as of right now, the app just seems to ignore those.

Brilliant fork, works very well imo.

I am also having this issue. Storage permissions are granted, the fasthub folder exists, but downloads all fail.

@LyricLy yeah, we can redirect the command, but this will still notify people for example in a DM. I wrote the suggestion down in my log history improvement issue.

The reason for this is that all children of the grid are cached indefinitely. Currently there is no way of disabling this behaviour. However, I have opened PR #188 that...

The package doesnt inherently support windows, because `sqflite` doesn't. But the developer of `sqflite` has provided an extra package to add Desktop support, which you can plug into your app....

this would be important to me. On a different note, its even required to use pub and not git when using a package in another package. Though that isnt relevent...

You can add windows support yourself: 1. add the desktop sqflite to your pubspec ` sqflite_common_ffi: ^2.1.0` 2. call this somewhere before `runApp`: ```dart if (Platform.isWindows || Platform.isLinux) { sqfliteFfiInit();...