Michael VanRobb
Michael VanRobb
I just ran into this same problem. The following creates the depth issue. ``` ViewController = require "ViewController" Views = new ViewController initialView: sketch.LandingScreen scroll = ScrollComponent.wrap(sketch.LandingScreen) ``` Wrapping the...
Same thing here, tons of errors being thrown about modules not found. Shouldn't the modules bootstrap-webpack relies on be dependencies of it and get installed automatically?
What about an animiateFrom? Something I abused thoroughly in gsap. It's not quite as needed in framer since we have states, but it could be useful for setting up animate-in...
I have been tinkering with this idea using Proxy objects. Not sure if it works for this use case, have a look; https://github.com/tehfailsafe/ObservableLayer I've been debating the syntax: `Layer.observe(Store, "layerProperties",...
The other benefit here is that `Store` can be a module that can be imported into other modules, and any module can modify the store which will update any layer...
New to framer studio, but one thing that keeps tripping me up is duplicating closing elements like ) or ". For example when I write method arguments, pressing `(` generates...
Got it, disabled for now, thanks! Last one that is pretty minor is `cmd-enter` creating a new line without breaking the current line. Is that an option I missed somewhere...
On top of folding, has anyone tried setting up a build process like webpack to watch files and re-bundle framer.js? Modules are awesome and I'd love to see live code...
Wow... I've been getting used to babel/webpack lately where you can just leave commas on the last item in an object and it doesn't care (and keeps yelling at me...