paper-toggle-button 是否符合 Material 设计?

Is paper-toggle-button compliant with Material Design?

On this page, Material 设计似乎指定拨动开关按钮应放置在其标签的右侧。

But on the <paper-toggle-button> page of WebComponents.org,唯一可用的选项是将切换按钮放在标签的左侧。

none 样式选项似乎可以解决这个问题。

这是与 MD 根本不兼容还是我遗漏了什么?无论如何,符合 MD 规范的推荐最佳实践是什么?

编辑:

Here is an open issue on Github.

And here is an open PR.

显然正在进行修复。同时我只需要知道 "best practice" 是什么?

Materialize <paper-toggle-button>,不要使用已安装的标签功能。相反,创建一个可以独立定位和设置样式的单独标签。

<div class="start">
  Auto-rotate screen
</div>
<div class="end">
  <paper-toggle-button checked="{{autoRotateScreen}}"></paper-toggle-button>
</div>