Dan Field

Results 553 comments of Dan Field

Fun fact: this is a somewhat known but not-often complained about issue, and up until now it's been an easy way to detect Flutter applications in the wild. We'll miss...

`dart:ffi` should make it easier to do native interop for this via C++, but it would be really nice if it was also available as a Dart library.

@zanderso another issue with doing it in an embedder specific way is that apps still need to package in BoringSSL and the rest of the Dart network static on the...

The goal would be to have some other implementation in use, e.g. NSURLConnection on uOS

I'm going to work on a design doc for this.

CFSocket should be available on both iOS and macOS. An alternative to this is https://github.com/dart-lang/sdk/issues/39104, but this is likely easier to implement and should not require any breakages in the...

The idea with 39104 is to keep the API compatible with dart:io, so that you can just switch your import from `dart:io` to `dart:net`. I've been planning to write a...

So it certainly could be achieved as a preprocessing step before passing to Dart if it's not targetted for the language. My only fear with that is fragmentation (there's the...

This is coming up as something that would help Flutter framework implement cross-platform features in ways that are especially challenging today - such as supporting both `dart:html` and `dart:io`, or...