Jonathan Rezende

Results 91 comments of Jonathan Rezende

fixed the conflicts here https://github.com/jcmellado/dartis/pull/44/

@jcmellado do we need any changes to merge the PR?

> I tried the different provided solution (thanks all for the effort), but none of them worked properly. > To detect the correct types at runtime is the hard part....

I will update the package as soon as 2.18 is out, ok?

@srujzs I have already reconstructed the bindings but I am getting an error while serving the example app: ```dart import 'package:js_bindings/js_bindings.dart'; void main() { window.document.title = 'JS Bindings example'; document.title...

it happens with a clean `webdev serve`: ``` [jonathanrezende@joe js_bindings]$ rm -Rf .dart_tool/ [jonathanrezende@joe js_bindings]$ dart pub get Resolving dependencies... (((1.8s) frontend_server_client 2.1.3 (3.0.0 available) bGot dependencies! dev [jonathanrezende@joe js_bindings]$...

@srujzs it worked with 2.19 but then another error: ```dart // create the buttons to use in the example final div = (document.createElement('div') as HTMLDivElement) ..id = 'someDiv' ..innerHTML =...

@srujzs published 0.0.7 that works ok except the approach of using `enum` instead of `String`: ```dart @anonymous @JS() @staticInterop class RequestInit { external factory RequestInit._( {required String method, dynamic headers,...