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