0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AnimationBuilderで作るぴょんぴょん跳ねるWidget

Posted at

bounce_icon.gif
自然にユーザの注意を引きたい時、飛び跳ねてアピールするのが有効です
MacOSのDockでも、バックグラウンドで更新されたアプリがぴょんぴょん飛び跳ねることがあります
たくさん使うと目障りですが、ポイントで使うと有効かと思います

今回は、FlutterのAnimationBuilderを使って任意のWidgetをぴょんぴょん跳ねさせるコンテナクラスを作成してみました

Flutterにおけるアニメーションの種類

公式ドキュメントで、チャート付きで解説してあります。親切ですね

今回の場合、

  • 絵を描くようなアニメーションがしたい? → いいえ
  • テキストアニメーションがしたい? → いいえ
  • アニメーションが常に全面にあってもいいか? → はい
  • アニメーションの値に不連続性はないか? → はい
  • 簡単に、無限に繰り返す必要はないか? → はい
  • 一つの子Widgetだけを動かしたいか? → はい

と言うことで、TweenAnimationBuilderを使うことにしました

単純に大きくor小さくする、または一方向に動かすようなアニメーションであれば、AnimatedContainerの方が手軽そうです。飛び跳ねる動作の場合は、飛んで、落ちてくる、と言う2アクションが必要なのでAnimatedContainerでは実装が難しそうでした

ぴょんぴょん飛び跳ねるContainerの実装

と言うことで実装してみたものがこちらです

ソースコード

bounce_container.dart
import 'package:flutter/cupertino.dart';

// ========== アニメーション定義 ========== //
// 飛び上がりアニメーション
final _bounceUp = TweenSequenceItem<double>(
  weight: 1,
  tween: Tween(
    begin: 0.0, end: -30.0
  ).chain(CurveTween(curve: Curves.easeOutCubic))
);
// 飛び下がりアニメーション
final _bounceDown = TweenSequenceItem<double>(
  weight: 1,
  tween: Tween(
    begin: -30.0, end: 0.0
  ).chain(CurveTween(curve: Curves.easeInCubic))
);
// 有限回数繰り返すために、TweenSequenceでその分定義する
final _sequence = TweenSequence<double>(
    <TweenSequenceItem<double>>[
      _bounceUp,
      _bounceDown,
      _bounceUp,
      _bounceDown,
      _bounceUp,
      _bounceDown
    ]
);

// ========== Widget定義 ========== //
class BounceContainer extends StatefulWidget {
  final Widget child;
  final state = _BounceContainerState();

  BounceContainer({required this.child});

  @override
  State<StatefulWidget> createState() => state;

  // 外部からアニメーションをトリガーするための公開メソッド
  void bounce() {
    state.animate();
  }
}

// Stateful WidgetかつSingleTickerProviderStateMixinが必要
class _BounceContainerState extends State<BounceContainer> with SingleTickerProviderStateMixin {
  late AnimationController animController;
  late Animation<double> animTween;

  @override
  void initState() {
    super.initState();

    animController = AnimationController(
      vsync: this,
      duration: Duration(milliseconds: 2000),
    );
    animTween = _sequence.animate(animController);
  }

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

  @override
  Widget build(BuildContext context) {
    return AnimatedBuilder(
        animation: animController,
        builder: (context, child) {
          return Transform.translate(
              offset: Offset(0, animTween.value),
              child: widget.child);
        }
    );
  }

  void animate() {
    animController.reset(); // resetしないと2回目以降に動かない
    animController.forward();
  }
}

使う側のソースコード

FloatingActionButtonを押すと、ぴょんぴょんするようにします

main.dart
class MyHomePage extends StatelessWidget {
  final bounceIcon = BounceContainer(
      child: Icon(Icons.tag_faces)
  );

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        toolbarHeight: 0,
      ),
      body: Center(
        child: bounceIcon,
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () {
          bounceIcon.bounce();
        },
        child: Icon(Icons.repeat),
      ),
    );
  }
}

アニメーションの種類で対空時間を調整する

TweenSequenceのCurvesによって、ぴょんぴょん具合を調整することができます
Curvesアニメーションパターンは公式にあります

  • easeIn/Out(左)
  • easeIn/OutCubic(中央)
  • easeIn/OutCirc(右)

ease.gif ease_cubic.gif ease_circ.gif

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?