Link to the printscreen of the figma model
I want to place the VerticalDivider widget right in the middle of the Row with the other 2 Columns that contain "Objetivo: Recomendação mĂ©dica" and "NĂvel do aluno: intermediário" and I want both of these Columns in the middle of the space left for each one.
>Solution :
Use Expanded to split remaining spaces in a Flex (like Row or Column).
For example:
Row(
children: [
Expanded(child: Container(color: Colors.blue)),
VerticalDivider(),
Expanded(child: Container(color: Colors.orange)),
],
)
