anitex 3.0.1 copy "anitex: ^3.0.1" to clipboard
anitex: ^3.0.1 copied to clipboard

Anitex is a implicitly animated text widget, which animates on passed text changes

AnimatedTextWidget #

Getting started #

Anitex - is a simple package, which give you access to implicitly animate any text. The most impressive animation is achieve if the old and new lines are the same length, or don't differ too much in length.

Example of usage:

  /// ...
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: AnimatedText(
          title, // This is just a [String]
          style: Theme.of(context).textTheme.headline6.copyWith(color: Colors.white),
          duration: const Duration(seconds: 1),
        ),
      ),
      body: Center(
        child: AnimatedText(
          content,
          reversed: true,
        ),
      ),
    );
  }
copied to clipboard
29
likes
150
points
279
downloads

Publisher

verified publisheralphamikle.dev

Weekly Downloads

2024.08.26 - 2025.03.10

Anitex is a implicitly animated text widget, which animates on passed text changes

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on anitex