Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
736 views
in Technique[技术] by (71.8m points)

animation - 如何在无效输入上摇动Flutter中的小部件?(How to shake a widget in Flutter on invalid input?)

On my signup form, I have a checkbox which needs to shake a bit whenever the user tries to login before accepting the terms and conditions.

(在我的注册表单上,我有一个复选框,当用户在尝试接受条款和条件之前尝试登录时,该复选框需要稍微动一下。)

How can I achieve something like this Flutter?

(我怎样才能获得类似Flutter的效果?)

  ask by Mystic monk translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Here is some code from my app.

(这是我的应用程序中的一些代码。)

It shakes a red x on the screen.

(它在屏幕上摇动红色x。)

redx.png.

(redx.png。)

I'm sure you could adopt it to your use case.

(我相信您可以在用例中采用它。)

I'm using AnimatedBuilder.

(我正在使用AnimatedBuilder。)

Code in action: https://giphy.com/gifs/Yo2u06oMu1ksPYRD3B

(实际执行中的代码: https//giphy.com/gifs/Yo2u06oMu1ksPYRD3B)


import 'package:flutter/material.dart';
class ShakeX extends StatefulWidget {
  const ShakeX({
    Key key,
  }) : super(key: key);

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

class _ShakeXState extends State<ShakeX> with SingleTickerProviderStateMixin{
  AnimationController controller;


  @override
  void initState() {
    controller = AnimationController(duration: const Duration(milliseconds: 500), vsync: this);
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
        final Animation<double> offsetAnimation =
    Tween(begin: 0.0, end: 24.0).chain(CurveTween(curve: Curves.elasticIn)).animate(controller)
      ..addStatusListener((status) {
        if (status == AnimationStatus.completed) {
          controller.reverse();
        }
      });
    controller.forward(from: 0.0);
    return AnimatedBuilder(animation: offsetAnimation, 
    builder: (context, child){
                  if (offsetAnimation.value < 0.0) print('${offsetAnimation.value + 8.0}');
                  return Container(
                    margin: EdgeInsets.symmetric(horizontal: 24.0),
                    padding: EdgeInsets.only(left: offsetAnimation.value + 30.0, right: 30.0 - offsetAnimation.value),
               child: Image.asset("assets/redx.png"),
                  );
    },);
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...