Brandon Trautmann
Brandon Trautmann
**Description** It would be great if there was tooling that was focused on highlighting performance regressions introduced in _patches_. Flutter developers today have at their disposal a few profiling tools,...
Hi there 👋 First off, thanks for the great package! ### Note: The below context is maybe helpful but not necessary for the overall question. The TLDR question is at...
**Description** Within the `README`, the **[Pitfalls](https://github.com/jinyus/dart_beacon?tab=readme-ov-file#pitfalls)** section clearly calls out the potential footgun of registering dependencies following an `async` gap. One thing that's not touched on, though, is the case...
### Package google_fonts ### Existing issue? - [X] I checked the [existing issues](https://github.com/material-foundation/flutter-packages/issues) ### What happened? ## Expected vs actual result: Expected (as displayed on iOS):  Actual (as displayed...
Currently `createContext` is one of the more recognizable bottlenecks when doing large batches/insertions with drift. In talking with @simolus3 it sounds like there are some improvements that could be made...
Based on recent conversations with @simolus3, I learned that currently Drift does _not_ distribute read executions across background isolates and instead both writes and reads execute on a single isolate....
``` #### General info - Dart 3.5.0 (stable) (Tue Jul 30 02:17:59 2024 -0700) on "macos_arm64" - on macos / Version 14.7 (Build 23H124) - locale is en-US #### Project...
**Description** Oftentimes I am bitten by the fact that doing the following is _not_ supported: ```dart final state = context.select((MyState s) => s.canContinue); ``` Instead, I need to do: ```dart...
### Is there an existing feature request for this? - [x] I have searched the existing issues. ### Command _No response_ ### Description In [v5.1.0](https://github.com/invertase/melos/blob/main/CHANGELOG.md#melos---v510) the `format` command was introduced...
### Feature description We have a feature in our app that shows the user an error code whenever an error is experienced. The idea is that a user can hand...