dhshah/FlutterTextTransformationAnimation
일련의 문자 변경을 통해 내부 텍스트를 변환하는 위젯입니다.
- Stars
- 2
- Forks
- 1
- 최근 푸시(UTC)
- 2022. 3. 28.
- 프로젝트 상태
- 보관됨
언어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),
),
)
...