v1.0.4
blinking_text
一個簡單的外掛,用於建立閃爍文字。它允許調整閃爍的持續時間以及文字停止前閃爍的次數。
31喜歡 9400近 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/