Brandon Trautmann

Results 134 comments of Brandon Trautmann

> Here's a quick PR trying to improve these docs: #142254 > > iOS doesn't handle this sort of back gesture like it does for the similar one in Android....

100% agree--I only was able to resolve my issue after finding this and reading the linked discussion above (which indicated I needed _both_ `@ignore` _and_ `@Collection(inheritance: false)`, which I did...

Yeah you'll need `@Collection` (capital C) with `inheritance: false` _and_ `@ignore` on the members you want `Isar` to ignore before it'll work. Took a lot of fiddling until I fully...

Have you tried following the instructions outlined [here](https://github.com/isar/isar#unit-tests)? This works for me on MacOS (and downloads a `libisar.dylib` file), and it looks like it's failing to find the file downloaded...

> @btrautmann I tried your suggestion, but it didn't change anything for me. Can you share your full command that is working? I'm sorry, we abandoned the effort that included...

> The new behavior for version 5 going forward will be to sort by the version number itself rather than the date. This should be sufficient to cover edge cases...

I seem to be experiencing this again using `GITHUB_TOKEN` even with all permissions set to `read`. However, using an app token with read permissions on all repos in the org...

@ivanhercaz do you have other `Builder`s being used in your codebase? I had this start happening again consistently and it was occurring any time I modified code that impacted `json_serializable`s...

@simolus3 I was able to get to this and checked out `drift` locally. To reproduce, I did the following: - Modified `_fromLibrary` to contain the following lines: ```dart final exportNamespace...

OK scratch that. I had a hunch that since it _was_ exported, it just wasn't being resolved for some reason, so I swapped out the current implementation of `readDart` in...