约束 宽高 size
Widget tightSize( double size, { Key? key, }) => ConstrainedBox( key: key, child: this, constraints: BoxConstraints.tightFor(width: size, height: size), );