Modestas Valauskas
Modestas Valauskas
I use mirrors ( + dart:cli + Isolate.resolvePackageUri) for synchronously getting an absolute filepath to the current file. ([xkcd](https://xkcd.com/1172/)) ```dart // ignore: deprecated_member_use import 'dart:cli'; import 'dart:io'; import 'dart:isolate'; import...
I haven't seen lenses mentioned anywhere before when data classes are being discussed. I strongly believe that they would greatly benefit from 'boilerplate free' lenses. This package attempts to solve...
I'm also not too familiar with F# but as spkersten said, they are much more flexible by being a more general abstraction. Take a look at the following code snippet:...
Thank you for the response @kevmoo. The `augmented libraries` feature could potentially introduce another source of context sensitivity to the dart grammar or be moderately breaking. I'm just trying to...
@mateusfccp I see that you mentioned me (but meant to mention dean). I still would like to give my retrospective opinion about the lack of documentation since I did spend...
Here's another idea, wouldn't it perhaps make more sense to start at the readme level since most people get to see the readme first? That would also be a great...
I have 2 points to add that speak against this feature: 1. Hit testing and painting is intuitive and easy to debug the way that it works right now. You...
> In general, I don't understand the argument against extra flexibility. You could simply not use the Widget if you choose. You might have accidentally skipped the third paragraph of...
> For building a Figma-like view, if I opt for Flow is it okay to pair this with InteractiveViewer? Or should I suck it up and use RenderObject? I'm sorry,...
> While I'm not generally a huge fan of trailing commas [...] Why? Is it personal preference or is there some non-obvious reason why you have that opinion?