How to annotate an ion-row
so that it fills the remaining space?
For the following example the yellow row "Content" should expand until all the remaining (green) space is taken.
<ion-grid style="background-color: green; height: 100%;">
<ion-row>
<ion-col text-center style="background-color: purple;">
<p>Example text</p>
</ion-col>
</ion-row>
<ion-row>
<ion-col text-center style="background-color: yellow">
<p>Content</p>
</ion-col>
</ion-row>
<ion-row>
<ion-col text-center style="background-color: blue;">
<p>Example text</p>
</ion-col>
</ion-row>
</ion-grid>
A similar question was asked for Bootstrap and got solved with flex-grow. See: Bootstrap 4 row fill remaining height
But can we stretch the row while sticking to th row/col syntax and not introduce more flexboxes?