KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
anitex
★ 20
Open GitHub ↗
Animated text widget
Download README (.md)
Explore Similar Repositories
my-pbft-simulation-py
:
Network simulation for PBFT (Practical Byzantine Fault Tolerance) consensus algorithm in Python
Awesome-Cross-Domain-Person-Re-identification
:
Awesome-Cross-Domain-Person-Re-identification
wepiggy-contracts
:
No description available.
strictly_fake
:
Stub that automatically verifies that stubbed methods exist and the signatures match the original.
Suvraneel.github.io
:
3D Portfolio UI
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
anitex
?
Download (.md)
## <span style="color:#3892fa">Ani</span>mated<span style="color:#3892fa">Tex</span>tWidget ### 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: ```dart /// ... @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, ), ), ); } ``` <img src="https://github.com/alphamikle/anitex/raw/master/demo.gif" width="400">