Hamed Araab
Hamed Araab
@evanw #### Part 2 Reproduction ```js import { Nexwidget } from 'nexwidget'; class TestElement extends Nexwidget { get template() { return this.testAttribute; } } TestElement.createAttributes({ testAttribute: String }); TestElement.register(); ```...
@RoelN I think the best way to implement bidirectionality in the future is by using [CSS `:dir()` pseudo-class](https://www.chromestatus.com/feature/5751531651465216). So then, how should we mirror those icons listed in the provided...
@RoelN But according to [Material Guidelines#mirroring-elements](https://material.io/design/usability/bidirectionality.html#mirroring-elements), not all icons should be mirrored. Icons like undo and redo mean the same in both RTL and LTR. That's why I proposed a...
I don't really know how variable fonts work, but another approach could be providing a variable font with an axis like `RTLD` (standing for right-to-left direction) which avoids importing two...
Hi @schultek, [Dawn](https://github.com/Hawmex/dawn)'s maintainer here. I also considered strongly typing styles in Dawn. The problem is, it needs a huge amount of time and effort to implement the current CSS...
Thanks for the explanation. As I've played around with `webdev`, I've noticed that in the JavaScript environment, unlike the Dart VM, the top-level Dart variables that contain the state are...
After all, it is possible to implement a stateful hot reload since Vue has done it.
When I started learning Dart I loved the fact that its syntax and concepts were straightforward and intuitive (null safety, classes, constants, finals, parameters, constructors, mixins, etc.). It's pretty much...
Hi, I'm the maintainer of a web framework called Navand. Since it uses CSR and the History API for navigation, we need to redirect invalid URLs to `/index.html`. Are there...