AnimatedPositioned constructor
const
AnimatedPositioned({})
Creates a widget that animates its position implicitly.
Only two out of the three horizontal values (left
, right
,
width
), and only two out of the three vertical values (top
,
bottom
, height
), can be set. In each case, at least one of
the three must be null.
Implementation
const AnimatedPositioned(
{super.key,
required this.child,
this.left,
this.top,
this.right,
this.bottom,
this.width,
this.height,
this.curve = Curves.linear,
required this.duration,
this.onEnd})
: assert(left == null || right == null || width == null),
assert(top == null || bottom == null || height == null);