アイコンを円形の背景の中央に配置しようとしましたが、コンテナのサイズを大きくしない限り、中央のウィジェットを子として使用しても失敗しました。
Container(
height: 22,
width: 22,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Color(0xffF7825C),
),
child: Center(
child: Icon(
Icons.add,
color: Colors.white,
),
),
)