Daco Harkes

Results 417 comments of Daco Harkes
trafficstars

Please go over all the `hook/build.dart` files and include `.h` files were possible: ``` dacoharkes-macbookpro2:native dacoharkes$ find pkgs/native_assets_cli/ -type f -name "*.h" pkgs/native_assets_cli//example/build/native_dynamic_linking/src/debug.h pkgs/native_assets_cli//example/build/native_dynamic_linking/src/add.h pkgs/native_assets_cli//example/build/native_dynamic_linking/src/math.h pkgs/native_assets_cli//example/build/download_asset/src/native_add.h pkgs/native_assets_cli//example/build/native_add_library/src/native_add_library.h pkgs/native_assets_cli//example/build/use_dart_api/src/dart_api.h pkgs/native_assets_cli//example/build/use_dart_api/src/dart_version.h pkgs/native_assets_cli//example/build/use_dart_api/src/dart_embedder_api.h...

Pros for `Uri`: * Predictable behavior when resolving. `Uri` has an API. `String` invites users to do arbitrary things (which will most likely fail on Windows with drive litters, and...

> To me `Uri`s indicate that they can be arbitrary URIs as much as `String`s indicate that they can be any arbitrary text. So you prefer `File` and `Directory`? 😄

From a discussion with @goderbauer: * Introducing something new: * This would force everyone to wrap/unwrap on the boundary. (Having `fromFilePath` `toFilePath` `fromUri` `toUri` everywhere.) This would make our APIs...

I have never been able to make it work with assets in Flutter, because the assets system does not do any linking nor bundling. Instead, could you try using `flutter...

You can run `flutter create --template plugin_ffi --platform=windows` which generates both a plugin as well as an example project using the plugin. This is the sample code. You can include...

We'd like to add support for `package:coverage` to run all the tests and combine all coverage (https://github.com/dart-lang/tools/issues/2083). That probably means we should have support for `dart test` for workspaces as...