Paper-dropdown-menu does not adequately open

Issue

The paper-dropdown-menu (Dart Polymer Elements 1.0.0-rc.3) does not adequately open. See the image:

enter image description here

  1. The paper-dropdown-menu closed.
  2. Open the first time.
  3. Open the second time.
  4. Open the third time.
  5. Open the fourth time.

The menu becomes smaller with each new opening.

Html code:

<paper-dropdown-menu label="Selecione Produto Componente">
  <paper-menu class="dropdown-content">
    <template is="dom-repeat" items="{{produtos}}" as="item_dropdown" index-as="index_iii">
      <paper-item class="produto" on-tap="selecionarProdutoComponente">{{item_dropdown.produto.descricao}}</paper-item>
    </template>
  </paper-menu>
</paper-dropdown-menu>

Need I to define a specific attribute or CSS to work?

Thanks in advance!

Solution

Same behavior in my project. When I deploy with dart2js, the behavior is correct with Chrome. I think this is a Dartium specific bug, so if nobody objects, then consider file a bug on the dart-polymer project.

Answered By – Jonas Bojesen

Answer Checked By – Willingham (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *