Shawn

Results 192 comments of Shawn

Any chance you might add this? It's not present in any sound libraries for Flutter currently, and would be really nice to be able to build visualizers. Edit, looking into...

This seems like angle to me... and then both angleTo and lookAt are derivates of that plus some external input.

This really needs a solution now that nnbd is rolling into flutter at large. Without one, we're going to end up with a bunch of landmines like this: ```dart void...

The only way I can see this happening Flutter is this bizarre concoction: ``` class Foo extends StatelessWidget { const Foo({Key? key, this.value}) : super(key: key); final String? value; @override...

> I'm not sure if I like the idea having this added to Dart because the beauty of Dart is its simplicity. But there is nothing beautiful about writing data...

This is bizarre... we have a type, we need to write it into our payload so the server knows what class this is. I don't understand the rationale. ``` class...

Mentioned this here, but we have the exact same use case, we're sharing data classes on the backend, and we need to embed a type. https://github.com/google/json_serializable.dart/issues/891 The work around of...

I think darts chaining ability makes this a bit redundant. ``` final instance = Object()..setup()..doOtherStuff(); GetIt.I.registerSingleton(instance); ``` On the other hand, it cant really hurt, and is a small quality...

I think if it's lazy, it's obvious why it wouldn't return anything. Seems ok to me.