highlight_on_update 0.0.1 highlight_on_update: ^0.0.1 copied to clipboard
A Text widget that highlights itself when getting updated.
highlight_on_update #
🔦 A Text widget that highlights itself when getting updated.
Getting started #
pub #
Add packages to pubspec.yaml:
dependencies:
highlight_on_update:
Use it! #
Row(
children: [
const Text(
'Current price: \$',
style: TextStyle(fontSize: 20),
),
HighlightOnUpdateText(
_priceText, // This text will be highlighted when updated.
style: const TextStyle(fontSize: 20),
),
],
),
For a show case, check the example.