我需要一个使用剪辑行为的溢出小部件,但我不知道该怎么做?
child: Row( children: [ Stack( children: [], overflow: Overflow.clip, )
clipBehavior像这样使用:
clipBehavior
Stack( clipBehavior: Clip.none, // This is what you need. children: [],)