gpt4 book ai didi

animation - 如何在无效输入时晃动 Flutter 中的小部件?

转载 作者:行者123 更新时间:2023-12-03 19:43:33 25 4
gpt4 key购买 nike

在我的注册表单上,我有一个复选框,每当用户在接受条款和条件之前尝试登录时,该复选框都需要摇晃一下。我怎样才能实现像 Flutter 这样的东西?

最佳答案

import 'package:flutter/material.dart';

@immutable
class ShakeWidget extends StatelessWidget {
final Duration duration;
final double deltaX;
final Widget child;
final Curve curve;

const ShakeWidget({
Key key,
this.duration = const Duration(milliseconds: 500),
this.deltaX = 20,
this.curve = Curves.bounceOut,
this.child,
}) : super(key: key);

/// convert 0-1 to 0-1-0
double shake(double animation) =>
2 * (0.5 - (0.5 - curve.transform(animation)).abs());

@override
Widget build(BuildContext context) {
return TweenAnimationBuilder<double>(
key: key,
tween: Tween(begin: 0.0, end: 1.0),
duration: duration,
builder: (context, animation, child) => Transform.translate(
offset: Offset(deltaX * shake(animation), 0),
child: child,
),
child: child,
);
}
}

如果您需要重新启用抖动,只需将 ShakeWidget 键更改为某个随机键即可。

关于animation - 如何在无效输入时晃动 Flutter 中的小部件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59123469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com