harana

Results 31 comments of harana

Cleanest approach I've seen is to use a custom Webpack config where you define an alias e.g. resources: https://github.com/shadaj/slinky/blob/master/docs/webpack-fastopt.config.js And then to include: ``` @JSImport("resources/slinky-logo-horizontal.svg", JSImport.Default) ``` Or you can...

I will also be looking into this as well. Really need it :)

Making excellent progress on this. The animations are appearing on the iPhone. So expect a pull request in the next couple of days 👍

Thought I would give a status update since it's been an interesting adventure. So I am new to Flutter and wasn't aware that there was no way to really mix/match...

You can see the code in my fork. I already use Lottie-ios. The problem is that it outputs to a UIView whilst Flutter needs it in a CV buffer. I...

@nakashima-koki .. I don't want to push anything to this repo unless it actually works. Unfortunately I am pretty much stuck as I just don't know enough about the internals...

I've put together a test case here: https://github.com/harana-oss/slinky-554 It relies on a private SBT plugin so you will need to update build.sbt with your own code to rebuild everything. But...

@AlexITC .. What happens if you just use SharedItemApp(apis, appInfo) ?

I am getting the same issue now with non-functional components. Weird. @AlexITC .. Is it working for you with normal components. And you definitely see Slinky injector in the Scala...

If we take this example. It will not compile since you can't have default arguments with a *-parameter. However I am finding optional arguments to be very common amongst Javascript...