주식회사 이웃사촌

AnimatedBuilder 사용하기 본문

Flutter

AnimatedBuilder 사용하기

(주)이웃사촌 2021. 8. 13. 11:24

late AnimationController _animationController;

  late Animation _transAnimation;

  late Animation _rotateAnimaiton;

  late Animation _scaleAnimation;

 

  bool isForward = true;

 

  @override

  void initState() {

    super.initState();

    //���ϸ��μǿ��� ������ ������ �ʱ�ȭ �Ѵ�.

 

    //0.��Ʈ�ѷ�

    _animationController =

        AnimationController(durationDuration(seconds5), vsyncthis);

    //1.�̵�

    _transAnimation = Tween<Offset>(beginOffset(00), endOffset(200200))

        .animate(_animationController);

 

    //2.ȸ��

    _rotateAnimaiton =

        Tween<double>(begin0.0endpi * 10).animate(_animationController);

 

    //3.ũ�⺯��

    _scaleAnimation =

        Tween<double>(begin1end0).animate(_animationController);

  }

 

  //dispose �Ҷ� _animationController �� �����ؾ� ������ ���� �ʴ´�.

  @override

  void dispose() {

    super.dispose();

    _animationController.dispose();

  }

 

AnimatedBuilder(

                animation_scaleAnimation,

                builder: (contextwidget) {

                  return Transform.translate(

                    offset_transAnimation.value,

                    childTransform.rotate(

                      angle_rotateAnimaiton.value,

                      childTransform.scale(

                        scale_scaleAnimation.value,

                        childwidget,

                      ),

                    ),

                  );

                },

                childIcon(

                  Icons.cake,

                  size100,

                ),

              ),

              //2.ElevatedButton == ���ϸ��̼� ����

              ElevatedButton(

                  onPressed: () {

                    if (isForward) {

                      isForward = false;

                      _animationController.forward();

                    } else {

                      isForward = true;

                      _animationController.reverse();

                    }

                  },

                  childText('로테이션 시작하기'))

반응형
Comments