For Polymer Dart (pre 1.0), I've got a Custom Element, my-page, that has the following HTML:
<div vertical layout>
<div> ... stuff ... </div>
<div> ... stuff ... </div>
<my-panel> ... panel stuff ... </my-panel>
</div>
The element <my-panel> HTML creates a single div as follows:
<div flex>
<content></content>
</div>
But, my-panel is not "flexing" to the end of my-page. Is there a way to get this working without wrapping my-panel is its own <div flex>?
::content
or similar). What about just adding theflex
attribute to my-panel itself like<my-panel flex>
? – Günter Zöchbauervertical
andlayout
target the Polymer integrated styles. These would probably needed to be extended with::content
to make it work. – Günter Zöchbaueriron-flex-layout
's classes? elements.polymer-project.org/guides/flex-layout – Alan Dávalos