Omar Kamel

Results 205 comments of Omar Kamel

It would be great to have requests provided through ex vscode tunnels. Currently running windows machines, so my options are ultimately limited. It kinda sucks to have to TeamViewer into...

There's also the fact that, with what little boilerplate there is, creating a relatively simple third party code gen tool is very much doable to simplify it further. ```dart @riverpod...

The syntax is also very interesting as it also allows for name-spacing providers inside of other providers. Its also very interesting because we can also create extensions on providers to...

Woah! My little helper method grew up! Didn't expect to see _this_ when I woke up today! Anyway, I notice (looking at the tests) that the catch blocks have a...

> Thanks for the feedback, appreciate the pointer on subclassing Storage. Yes the built-in expiration covers the basics really well, but for more dynamic scenarios like checking timestamps, user prefs,...

> Yes, that's one of the use-case behind the Transformer addition :) > > I haven't added such thing directly in Riverpod yet. But that's a valuable addition. Although make...

> At minimum this would require two `part`, because when using `.g.dart` for Riverpod, json_serializable won't run on the generated code. Yes, I acknowledged that. The tooling needs to get...

> I do not understand what you're trying to solve here. > > I'd rather not make the Mutation object mutable. Supporting changing the label would make it hard for...

I feel like this is _almost_ solved by doing ```dart class Foo { static const bar = Bar.new; } ``` With the caveat that you can't use it as a...

I would like to point out that you can't actually set the late next since you never interact with the type that has the one-time setter. Frankly... Why wouldn't you...