Ever experienced the fear of leaving your favourite JS libraries behind should you include Dart with your dev stack? Well fear no more, because the...
For further actions, you may consider blocking this person and/or reporting abuse
Hi, How can i implement this in angularDart, Tried following your approach but nothing is happening in my component.
Could you shed a bit more light on what you wish to achieve? You don't need interop if using AngularDart itself.
I am trying to use jQuery With AngularDart, to animate some components. Angular has a BrowserAnimationsModule but couldn't find something similar in AngularDart so decided to use jQuery.
May investigate this as part of my video series on AngularDart. In the meantime, have you tried with CSS animations?
Css animations was my last resort, i will try and use css. Thank you.
You're welcome. Just released a video today demonstrating interop with Toastr.js in an AngularDart web app → youtu.be/xegpncRwqGw Let me know what you think.
Do you, by chance, know if this works with Flutter?
This only works with browser-based packages. The only way I see this useful in a Flutter app is if rendering content in a web view.
Well there are tons of JS libraries that aren't ui related where we wouldn't have to reinvent the wheel
Sorry, not sure I follow what you mean here. Could you expand on this?
Let's say I want to use the moments.js library in my flutter application. Since it's already written, could I include this in my Flutter application and then call the functions in the moments library, or does it only work for interacting with the JS Window object?
Ahhh, thanks for clarifying. Only works with packages that are accessible via the
windowobject, which will cover most browser-based JS packages. This is by design.Out of interest, do you have a particular use case that warrants using a JS package in Flutter?
could you explain how to user nodejs 'require' in dart js interop ?
Hey Alfin, have you seen the node_interop package?
Hi, I'm new in web dev, and your aqueduct videos really help me, thx:)
I wanna ask is there a way to use javascript file in aqueduct project? I mean there's no index.html in project...
Hi Mandui, not in an Aqueduct project. Aqueduct is used to build serverside backends. You could serve index.html and js files with Aqueduct, but I'm assuming that ain't what you're asking.
Could you expand on what you wish to do?