Jacob Phillips

Results 30 comments of Jacob Phillips

The above image was from Firefox 51.0.1 on Linux Mint 17. After updating to Firefox 55.0.2 geo-location is still not working, but I'm not sure what the error is. Here...

**Update**: This won't work until the above issue is resolved. Constructors in JS and in Dart both are not functions after compiled with dart2js. Thanks for including me anyway. Okay...

@donny-dont `@JS` can be very picky. There isn't much that can be done outside of the examples from https://github.com/matanlurey/dart_js_interop. Interestingly, most things are allowed by either DDC or Dart2JS, but...

With regard to best practices when 'wrapping' JavaScript using `package:js`, I've been going back and declaring `@JS` classes as abstract only if their underlying JS class is abstract. This leads...

It's really just to be transparent and denote that the actual javascript version can be instantiated. Abstract lets you declare a property as `T asDart;` like in this repo, instead...

Can someone comment on the layers that have an effect on the Dart language as described in the grammar to the Dart language I experience as a developer? For instance...

Any development on this? I think I'm close to a workaround by compiling the sass to css before `webdev serve` or `pub run build_runner serve` (what the difference is, I...

@nshahan Yes I'm having some trouble importing the mixins. My theme.scss imports `/css/material/material.scss` and `/css/mdc_web/theme/mixins.scss` but `webdev serve` had trouble importing them so I have a script that I run...

`readOnly` is true by default in v1.0.0. Hiding the keyboard ideally happens without you noticing, but last time I checked `TextField` there was no way to prevent the keyboard from...

The native pickers and `TimeOfDay` don't support seconds. `DateTime`s do. I'm not sure of the best way to do this. Some ideas: - After a time is chosen, add `:00`...