Omar Kamel

Results 205 comments of Omar Kamel

i dont think theres any value in separating `lazy` and `late`. the difference between them is just the presence of an initializer. Instead, what I think the real problem here...

It would be really great to have this, as currently i am working on an app that includes custom features, where each feature can change a different part of the...

What does it take to make this happen? I know I'm not the only one wondering why this isn't already a thing. Isn't it a simple task to have ```dart...

I feel like we can almost treat a combined mixin as though the composite (the mixin that mixes other mixins) is treated like a normal mixin that *happens* to have...

`SignalProvider` doesnt actually work the way it looks like it should because it doesnt store the created signal in any kind of state. Instead, i'd recommend having an `InheritedSignal` that...

just make your own extension method with the logic you want? i have my own `Widget widgetWhen(Widget Function(T) whenData, {/*optional loading and error overrides*/})` that injects my loading and error...

If this works, then i encourage you to publish your version as a "plus" version or similar @Linij Also, consider pulling the changes since then.

also, @jnschulze, please - this is kind of important.

> and then import that everywhere you would otherwise `import package:flutter/material.dart`. I think we need improved tooling for this. When I once attempted something similar, the inconvenience of needing to...

I actually dont like `.()` Reason being, I see the dot syntax `.new()` as being _actually_ `_.new()`, where `_` is the context type, which can be omitted for brevity. the...