美文网首页
flutter-实现一个简单的展开收起动画

flutter-实现一个简单的展开收起动画

作者: 浮华_du | 来源:发表于2021-03-29 17:00 被阅读0次

使用Tween动画,改变控件距左距离
展开时,展示菜单控件,动画正向执行;收起后,动画反向执行,隐藏菜单控件;


class SpreadWidget extends StatefulWidget {
  SpreadWidget({Key key}) : super(key: key);

  @override
  _SpreadWidgetState createState() => _SpreadWidgetState();
}

class _SpreadWidgetState extends State<SpreadWidget>
    with TickerProviderStateMixin {
  bool offstage = true;
  bool zhankai = false;

  Animation<double> animation;
  AnimationController controller;

  @override
  void initState() {
    controller = new AnimationController(
        duration: const Duration(milliseconds: 500), vsync: this);
    animation = new Tween(begin: 0.0, end: 150.0).animate(controller)
      ..addListener(() {
        if (animation.status == AnimationStatus.dismissed &&
            animation.value == 0.0) {
          offstage = !offstage;
        }
        setState(() => {});
      });
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Container(
      width: ScreenUtil().screenWidth,
      height: 100,
      child: Stack(
        children: [
          Positioned(
              top: 10,
              left: 20,
              child: Text(
                "展开/收起",
                style: TextStyle(fontSize: 20),
              )),
          Positioned(
            top: 50,
            left: ((animation?.value ?? 150.0) > 150 ? 150 : animation?.value),
            child: Offstage(
              offstage: offstage,
              child: Image.asset(
              "jiaoyin.png",
                width: 50,
                height: 50,
              ),
            ),
          ),
          Positioned(
            top: 50,
            left: ((animation?.value ?? 100) > 100 ? 100 : animation?.value),
            child: Offstage(
              offstage: offstage,
              child: Image.asset(
                 "jiaoyin.png",
                width: 50,
                height: 50,
              ),
            ),
          ),
          Positioned(
            top: 50,
            left: ((animation?.value ?? 50.0) > 50 ? 50 : animation?.value),
            child: Offstage(
              offstage: offstage,
              child: Image.asset(
                "jiaoyin.png",
                width: 50,
                height: 50,
              ),
            ),
          ),
          Positioned(
            top: 50,
            left: 0,
            child: GestureDetector(
              onTap: () {
                setState(() {
                  zhankai = !zhankai;
                  if (!zhankai) {
                    //展开
                    offstage = !offstage;
                    //启动动画(正向执行)
                    controller.forward();
                  } else {
                    controller.reverse();
                  }
                });
              },
              child: Image.asset(
                 "dongtai.png",
                width: 50,
                height: 50,
              ),
            ),
          ),
        ],
      ),
    );
  }

  @override
  void dispose() {
    controller.dispose();
    super.dispose();
  }
}

相关文章

网友评论

      本文标题:flutter-实现一个简单的展开收起动画

      本文链接:https://www.haomeiwen.com/subject/mdbbhltx.html