After appling scale, it ignores overflow.clip on Stack Widget.
It becomes overflow.visible always. I think it must be inside of parent, when it is overflow.clip.
if scale is 1, it works; overflow.clip is accepted.
But if scale is more than 1, it does not work.
AnyParent Widget(
child:
Transform.scale(
scale: 2,
child: Stack(
overflow: Overflow.clip,
children: <Widget>[
Positioned(
left: 220,
top: 200,
child: FlutterLogo(),
),
],
),
),
)