I cannot get a Text, IconButton and a Text to align vertically in a row.
I tried crossAxisAlignment: CrossAxisAlignment.center
without success.
This is the code of the row:
Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(DateFormat('dd-MM-yyyy').format(wd.date!), style: TextStyle(fontWeight: FontWeight.bold, fontSize: 16), textAlign: TextAlign.left),
IconButton(
iconSize: 17,
padding: EdgeInsets.all(3),
onPressed: wd.resetRequested ?? false ? null : () async {
showConfirm(context, wd, reloadMonthCallback);
},
icon: Icon(Icons.delete)
),
Text("${wd.totalHourCount.toStringAsFixed(2)}h", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 13), textAlign: TextAlign.right)
],
),
and this is the result:
Note: Using flutter web