andrewackerman
andrewackerman
This is the repository for the `audioplayer` package. You are looking for the `audioplayers` package, which was originally a fork from this repository but has become a more up-to-date version...
I support this, but suggest also adding `toJson` and `fromJson` methods to the generated code so data class instances can be easily (de)serializable.
@i-schuetz Then maybe there can be some optional attributes that can be added to the class declaration so these features can be added for people who need them? Serialization may...
@ReinBentdal Omitting the period for constructors would lead to a whole slew of ambiguous situations simply because parentheses by themselves are meant to signify a grouping of expressions. Ignoring that,...
@rrousselGit Sorry for taking so long. I must have missed the email at some point. The main reasoning behind the custom language approach was two-fold. First, I wanted the UI...
For sure, I didn't have any short term goals of implementing FLUI in anything other than VS Code for that very reason, though I'd imagine that the bulk of the...
It may be an anti-pattern to sealed classes, but there are still legitimate use cases for this. Another example might be an event bus listener that only listens for particular...
Ideally, though this signature matches the style of the next closest existing method for this sort of thing ([`decodeImageFromPixels`](https://api.flutter.dev/flutter/dart-ui/decodeImageFromPixels.html)). I could see arguments both for leaving it "low-levelish" using only...
My personal hope is that the implementation of this would be something along the lines of `Create internal texture from pixel data >> Paint texture to canvas/painting context`. There are...
@creativecreatorormaybenot Actually that's exactly what I was looking for. The texture used by that widget is a native texture that can be, among other things, a texture registered to the...