Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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),
),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #set #padding #flutter
ADD COMMENT
Topic
Name
3+9 =