Gregory Conrad
Gregory Conrad
If anyone sees this issue, please feel free to chime in on the proposed changes for Dart 3 above! Would be nice to have some feedback from people using the...
> The remaining feature work would be the ability to run on import/export declarations Do you mean: ```dart @MyMacro() import '...'; ``` If so, when do you think such a...
Something similar would also be extremely helpful in `DeclarationCode.fromParts`; take: ```dart [ 'Widget', ' build(', ...['BuildContext', ' ', contextName, ', '], ') => ', ...[functionName, '(', functionArgs, ');'], ], ```...
This seems like a case where it'd make sense to just adopt the long-awaited syntax like: ```dart @Macro() void myFn({int i = 123}) {} // generated: void myFn2({int? i}) {...
@ykmnkmi That's a good question; I'm curious as to the response on that. @lrhn about named/positional parameters: at a certain point here, I think it would almost make sense to...
Actually just had another idea too; if #2899 or #2232 were to be introduced, then conditionally passing in an argument to a record/function would become easier too! Any variables not...
For what it's worth, if Flutter adopted algebraic effects, state management would largely cease to be an issue across the ecosystem. In a breaking change, or perhaps just in a...
My current workaround using [`flutter_hooks`](https://pub.dev/packages/flutter_hooks) and [`font_awesome_flutter`](https://pub.dev/packages/font_awesome_flutter) (neither of these packages are required for this workaround, but they make it easier): ```dart import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:font_awesome_flutter/font_awesome_flutter.dart'; class DropdownFilterChip...
POSIX semaphores might help for the tests, but have you experimented with limiting test concurrency as well for just macOS? Maybe that would also fix the issue, i.e.: `cargo test...
Hi! Looks like that PR is almost done; any idea of when milli might be up on crates.io? I am making a library for an embedded version of milli and...