I'm trying to use the angular flex-layout, but I have a problem with the directive fxFlex and in particular with the parameter flex-grow.
The doc says :
flex-grow: defines how much a flexbox item should grow (proportional to the others) if there's space available. The flex-grow value overrides the width.
So I thought that with the following code, the second div should have been twice as big as the second one and should have filled the empty space :
<div fxLayout="row">
<div fxFlex="2 1 30%">[flex="2 1 30%"]</div>
<div fxFlex="1 1 40%">[flex="1 1 40%"]</div>
</div>
But it doesn't work as I expected and I can't find out in which conditions the argument flex-grow is used ?
Here is the plunker I worked with.