ConstrainedBox( constraints: BoxConstraints( maxHeight: 100 ), child: Stack( overflow: Overflow.clip, children: <Widget>[ Container( width: 100, height: 200, color: Colors.greenAccent, ) ], ),),