in this code which that implemented in my application i would like to change start position of SizeTransition animation, but i can't any document about that
SizeTransition( sizeFactor: CurvedAnimation(parent: _animationController,curve: Curves.easeInOut), axisAlignment: 0.0, child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: <Widget>[ ], ), ), in that SizeTransition will start from zero and i want to change that to 0.5, is any body opinion about this issue?
ScaleTransition.