0

How to achieve this effect with Flutter? Preferably with something like animatedContainer, but not necessarily.

1 Answer 1

1

Solution 1:

Look at this package: animated_text_kit

https://pub.dev/packages/animated_text_kit

See the Wavy pattern...

enter image description here

return DefaultTextStyle(
  style: const TextStyle(
    fontSize: 20.0,
  ),
  child: AnimatedTextKit(
    animatedTexts: [
      WavyAnimatedText('Hello World'),
      WavyAnimatedText('Look at the waves'),
    ],
    isRepeatingAnimation: true,
    onTap: () {
      print("Tap Event");
    },
  ),
);

Solution 2:

There are several more general packages that provide out of the box and ready to use Loading animations... (but not necessarily the exact same animation from your link)

Links:

https://pub.dev/packages/flutter_easyloading

Flutter loading text animation

Flutter loading text animation

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.