I want to use AnimatedSize, in child of AnimatedPositioned but i get the exception.
this is my code :
AnimatedPositioned( duration: Duration(seconds: 2), curve: Curves.fastLinearToSlowEaseIn, top: isProfileSelected ? 100 : 0, child: Transform.translate( offset: Offset(isProfileSelected ? MediaQuery.of(context).size.width / 2 - 53 :MediaQuery.of(context).size.width / 2 - 38, 90 / 2), child: AnimatedSize( curve: Curves.fastOutSlowIn, child: isProfileSelected ? SizedBox( width: 106.0, child: circleAvatar(106, 106), ) : SizedBox( width: 76.0, child: circleAvatar(76, 76), ), ), ), ),
AnimatedSize