📅  最后修改于: 2022-03-11 14:48:09.709000             🧑  作者: Mango
//wrap with expanded which text you want to come below if space not availabe in top row
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Text(
mainProduct.name,
),
),
secondWidget(),
],
),