v1.0.4
blinking_text
깜빡임 텍스트를 생성하는 간단한 플러그인입니다. 깜빡임 지속 시간과 텍스트가 멈추기 전 깜빡이는 횟수를 조정할 수 있습니다.
31좋아요 9.4천30일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
깜박이는 텍스트 위젯을 생성하기 위한 간단한 플러그인
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A simple plugin to create blinking text
Properties: It supports properties of Text widget's and includes 4 more properties for animation
Blink text with opacity
BlinkText('Blink Animation'),
Blink text from original color to orange indefinitely
BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 24.0, color: Colors.redAccent),
endColor: Colors.orange,
),
Blink text from black to orange 10 times
BlinkText(
'Blink Animation',
style: TextStyle(fontSize: 48.0, color: Colors.redAccent),
beginColor: Colors.black,
endColor: Colors.orange,
times: 10,
duration: Duration(seconds: 1)
),
Original Link: https://tleapps.com/blinking_text/