// ...
body: Stack(
clipBehavior: Clip.none,
children: <Widget>[
Container(
width: 200,
height: 200,
color: Colors.red,
),
Container(
width: 150,
height: 150,
color: Colors.green,
),
Positioned(
bottom: -50,
right: -50,
child: Container(
width: 100,
height: 100,
color: Colors.blue,
),
),
],
)
// ...