Réglez moins le rembourrage en flottement


//No, Flutter does not allow negative margins
//but you can use this 

child: Container(
  color: Theme.of(context).accentColor,
  transform: Matrix4.translationValues(0.0, -50.0, 0.0),
),
Dineth S