|
|
|
|
|
by danielvaughn
1106 days ago
|
|
Totally reasonable response, and thanks for taking the criticism well - I hope it didn't come off as too harsh. I mostly agree with everything you wrote, just one thing I'd say: Designers may be used to visual tools, but IMO it's a hangup. It's like someone telling you that they find it easier to click File > Copy > File > Paste because they're not used to typing "ctrl c > ctrl v". I get the psychology of it, but it's objectively wrong - a keyboard shortcut will always be more efficient and everyone who learns them is better off for it. Code is like that but on steroids. If there's an efficiency gap then it's an issue with dev tooling (which IMO is 100% true in lots of cases), not inherently with code. |
|
Pro webflow developers use keyboard a lot. In fact with Webstudio we took the keyboard accessibility very seriously, still A LOT to improve.
Visual development is a mixture of mouse and keyboard. Some things are faster with the mouse, some with the keyboard.
The reason some people prefer mouse is not just that they are used to, even though it is true. Its because they know how to be efficient with it very well.
"code is like that but on steroids" - again it can be true in certain use cases, but there is a massive amount of use cases where this is not actually true.
Most of them are around layouts, styling and configuring components. Visual development is basically declarative programming - its configuring things.
We are actually thinking deeply about the gap between typing and visually manipulating stuff at Webstudio and the plan is to allow a lot of the same UX patterns that you have with text-based coding: copy/pasting things like styles, box shadows, gradients, instances of components etc.
Ability to paste gradients is already there, box shadows comes soon. Writing component code inline will most likely come at some point as well. Linked CSS editor - similar to chrome dev tools for css is also planned.
As you can see there are ways to close the gap and when needed write code.
The most frustrating thing with code is the build tools, compilers etc. These days nobody writes just simple html and css, things are complex. So the benefits of writing code are often completely destroyed by the amount of complexity to deploy the site.