FLUTTER ECOSYSTEM

alphamikle/anitex

Widget de texto animado

Capa do projeto anitex
Stars
20
Forks
0
Último push (UTC)
5 de mai. de 2026
Status do projeto
Ativo
Mike Alfa GitHub avatar
GITHUB User

Mike Alfa ↗

A passionate developer who was lucky enough to have a hobby that became a job

LinguagensDartSwiftKotlinObjective-C

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 3 itens
  • flutter{"sdk":"flutter"}
  • flutter_testDesenvolvimento{"sdk":"flutter"}
  • flutter_lintsDesenvolvimento^2.0.1

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

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,
        ),
      ),
    );
  }
https://github.com/alphamikle/anitex/raw/master/demo.gif