v1.0.4
blinking_text
点滅テキストを作成するためのシンプルなプラグインです。点滅の持続時間と、テキストが停止する前に点滅する回数を調整できます。
31いいね 940030日間ダウンロード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/