Flutter - Overlay card widget on a container

前端 未结 3 1186
刺人心
刺人心 2020-12-28 17:16

In flutter, is it possible to place a part of a card on another container? In CSS, we would set margin-top to a negative value or use translate property. In flutter as we ca

3条回答
  •  -上瘾入骨i
    2020-12-28 17:49

    To do this,You Implement Positioned of the card using Stack widget in Flutter.

    Stack class is useful if you want to overlap several children in a simple way,

    Positioned widget that controls where a child of a Stack is positioned.

    Note: Stack paints its children in order with the first child being at the bottom.

提交回复
热议问题