How to fit height of child in Row to the height of other Row children in flutter?
I want to squeeze a child so that it fit to the height of another child. So I need to transform this: to this: My code is as follows: import 'package:flutter/material.dart'; void main() { runApp(const MaterialApp( home: HomePage(), )); }…