I want to display this text word1 • word2 • word3 and I found that in this flutter doc there is a $middot constant but I cant find it inside the ascii.dart file .
I also tried to define a const int $middot = 0x00B7; and use it in my text like word1 ${$middot} word2 ${$middot} word3, but the middot is simple ignored and I get word1 word2 word3
How can I achieve this?
I use this and it works:
const kInterPunctChr = '\u22C5';
final words = 'word1 $kInterPunctChr word2';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With