v3.0.1
anitex
Anitex は、渡されたテキストの変更時にアニメーションする暗黙的なアニメーションテキストウィジェットです
29いいね 30730日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
アニメーションテキストウィジェット
{"sdk":"flutter"}{"sdk":"flutter"}^2.0.1以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
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.
/// ...
@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