Setting px value in fxFlex (of @angular/flex-layout) does not seem to behave as expected.
I have two plunkrs examplifying this.
<div fxLayout="row" >
<div fxFlex="0 1 2000px" >
<p>... Really Really long Lorem Ipsum ...</p>
<!-- expecting flex div to shrink to viewport size,
with no horizontal scrolling necessary-->
<div fxLayout="column" >
<div fxFlex="1 0 200px" >
<p>... Really Really long Lorem Ipsum ...</p>
<!-- expecting flex div to grow to accommodate,
content size with vertical scrolling if necessary-->
In each case, as you can see when you run the plunkers, the expectation was not met.
It doesn't seem like this is behaving as in css flex spec
How can I get this to work?