ebelevics

Results 21 comments of ebelevics

@rrousselGit thank you for quick reply I have moved `getBaseData `inside `BaseDataProvider`, but yet it still dropped the error about ` Consider checking mounted.` Then I wrapped my `HomeScreen()` with...

This is what I created to bypass this limitation, and with futures delayed to zero it works great. Problem lies when I tried to call function without using Future (skipFuture...

I just wanted to create same issue about this topic but I found fortunately this. For me it's bezare that every time I have to reorder parameters in RealmObject creation,...

What is the status of this, as I'll need to store sensitive data in db? I wanted to encrypt .mdb file with AES256, but I couldn't find any reasonable solution....

Was really surprised that such functionally was not implemented, as game objects can be changed frequently. Thankfully it seems that all flame objects are components, and it was not so...

I just stumbled with this issue, and my guess it is related. I have unmanaged list of realm objects. And I do list.contains checking selecting/deselecting objects. But every time I...

I have noticed hashCode difference here: ```dart final resp = await LoadCarServerCalls().getLoadPlan(); // List? final results1 = resp?.map((r) => r.asRealm).toList(); // Mapping server objects to unmanaged realm object into list...

Ok, I'll take a look if there will be difference in performance

Yeah, this is my observation on current situation. And most wrapper solutions offer async API, not both (sync or async) like ObjectBox or Isar does. Meaning developer has a choice,...

Oh interesting didn't even know there is MultiExecutor, will take a look. This is the code I'm using to run Isolates, well it's straightforward and I think it does differ...