Martin Kamleithner
Martin Kamleithner
> Although `provider` could technically do something to make the code you wrote "just work" (without filtering rebuilds obviously) > Or add some asserts for it > > I'll think...
I had the same problem. I ended up implementing my own adapter, that inherits from the default MessagesListAdapter, with this method: fun updateItems(rawItems : List) { val oldItems = this.items...
Yeah, this method works for me now, but it's not very efficient if there are thousands of messages and you just want to insert one, because it re-generates the date...
Use @JsonValue for enums. JsonValue supports strings and ints. But yeah, this could print a warning that explains this at code generation time
Hi! Maintainer of ferry and gql-dart here. What @ngjoni is asking here is just to swap out the dependency from `graphql` to `gql_link`. (https://pub.dev/packages/gql_link ) If you follow the import,...
> Are you using sqlite3_flutter_libs to include libsqlite3.so? yes, I'm using ```yaml moor: ^3.3.1 sqlite3_flutter_libs: ^0.2.0 ``` Maybe the wrong sqlite 3 library gets loaded for some reason? Or the...
Using sqlite 0.1.7 and using ```dart bool _hasInitializedSqlite = false; // Do this once, before opening a database // see https://github.com/simolus3/moor/issues/876 Future _ensureSqlite3Initialized() async { if(_hasInitializedSqlite){ return; } //TODO prevent...
do you have any ETA for releasing these fixes?
Thank you. It really seems that there is a memory leak somewhere. I don't yet know where exactly and I probably won't have time to dig deeper into this in...
The EmptyStore probably does not cause a leak because you return an empty Stream on `watch()`. You can try creating a StreamController and return its `.stream` and see if that...