The following code results in an error: Incorrect use of ParentDataWidget. The cause for this error is the Positioned widget, but I'm not sure why...
return Scaffold(
body: Container(
color: Colors.red,
child: Positioned(
left: 32.0,
child: Container(
width: 128.0,
height: 128.0,
color: Colors.yellow,
),
),
),
);