SolidJSS
SolidJSโ€ข2y ago
Zwel

html range input doesn't work correctly inside <Dynamic> on android devices

**work on all devices**
<Dynamic component="div">
  <input type="range" />
</Dynamic>

doesn't work on android devices
<div>
  <Dynamic component="div">
    <input type="range" />
  </Dynamic>
</div>


When it has been wrapped by another div, input can't slide.
Was this page helpful?