FLUTTER ECOSYSTEM

dhshah/FlutterTextTransformationAnimation

एक विजेट जो इसके अंदर के टेक्स्ट को अक्षर परिवर्तन के श्रृंखला के माध्यम से परिवर्तित करता है।

FlutterTextTransformationAnimation प्रोजेक्ट कवर
Stars
2
Forks
1
अंतिम पुश (UTC)
28 मार्च 2022
प्रोजेक्ट स्थिति
आर्काइव
Darshan Shah GitHub avatar
GITHUB User

Darshan Shah ↗

Color
भाषाएँDart

उपयोग की गई निर्भरताएँ

निर्भरता सूची 2 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

FlutterTextTransformationAnimationWidget

A Widget which transforms the text inside of it via series of character changes.

Demo of Text Transformation

Example

String text = "Transformation";
...
Scaffold(
  appBar: AppBar(
    title: TextTransformationAnimation(
      text: _title,
      duration: Duration(milliseconds: 1000),
    ),
  ),
  floatingActionButton: FloatingActionButton(
    onPressed: () => setState(() => _title = "Text Transformation"),
    tooltip: 'Increment',
    child: Icon(Icons.add),
  ),
)
...