Answers for "set minus padding in flutter"

0

set minus padding in flutter

//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),
),
Posted by: Guest on April-13-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language