Closed Miggz closed 9 years ago
You may need to wrap those surfaces in <fa-view>
. This is untested on my end, but some layouts prefer sequencing views rather than surfaces.
Wrapping a fa-view inside the sequential layout works for me.
<fa-sequential-layout fa-options="sequentialOptions">
<fa-view fa-size="[160,50]">
<fa-modifier fa-translate="[0,0,1]">
<fa-surface>Surface One</fa-surface>
</fa-modifier>
</fa-view>
<fa-view fa-size="[160,50]">
<fa-modifier fa-translate="[0,0,1]">
<fa-surface>Surface Two</fa-surface>
</fa-modifier>
</fa-view>
</fa-sequential-layout>
@Miggz Is this still a valid issue? Thanks - Jordan
I am trying to implement a flexible-layout. The documentation does not show a full example, except to show:
Do I just add layout elements within the fa-flexible-layout element?
For example:
I have added options in my controller, but it doesn't seem to be working. Any help would be most appreciated. Also, I apologize if this is a stupid question, I'm more of a designer than a programmer.
Thanks