Does Flutter support negative margin?

前端 未结 8 724
你的背包
你的背包 2020-12-15 02:34

Negative margin is generally not needed but there are situations where it’s really useful. For example: why use negative margins?

For now, when I set margin for a co

8条回答
  •  抹茶落季
    2020-12-15 03:23

    The container has a useful transform property.

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

提交回复
热议问题