Gregory Conrad
Gregory Conrad
> I think that it is the best approach and it ensures that the API remains synchronous. just my two cents: if you compile to WASI you can just use...
As a heads up, iirc, FileExt won’t be stabilized for WASI until years from now since WASI itself isn’t stable. You should probably add a nightly cargo feature and then...
> I use a lot these side effects but not sure whether you think they must be included in the package. What's a use case for `firstBuild` in Dart? I'd...
Actually just realized there already is a `use.isFirstBuild`: https://github.com/GregoryConrad/rearch-dart/blob/238507a3d0a76a29be9876b71fdb0c4699e8d78e/packages/rearch/lib/src/side_effects.dart#L148
> I use it exclusively to request focus for a FocusNode because doing it synchronously seems to not work the most of times. Ahh. That might be fine then, but...
> Do you mean to create a scrollable test widget and test the controller on it? yea exactly, just making sure the scroll controller returned is working as expected for...
> So in this case I would wrap the task future with CancelableOperation and I would cancel it onDispose. I think a use.effect might actually be more correct there, where...
Macro execution doesn't appear to work in Flutter yet, but this is working in Dart-only for basic cases as far as I can tell. Only thing that is broken is...
The widget macros, which were the scope of this PR, are essentially done, at least to the best of what I can do right now with the current macros implementation....
Looks like quite a bit changed in the macros implementation since the last actual commit--need to bring this up to speed again.