We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9dae5d commit 4f28408Copy full SHA for 4f28408
lib/models/irc.dart
@@ -146,7 +146,10 @@ class IRCMessage {
146
span.add(
147
TextSpan(
148
text: '${DateFormat.Hm().format(parsedTime)} ',
149
- style: style?.copyWith(color: style.color?.withValues(alpha: 0.5)),
+ style: style?.copyWith(
150
+ color: style.color?.withValues(alpha: 0.5),
151
+ fontFeatures: [FontFeature.tabularFigures()],
152
+ ),
153
),
154
);
155
}
@@ -155,7 +158,10 @@ class IRCMessage {
158
156
159
157
160
text: '${DateFormat('h:mm').format(parsedTime)} ',
161
162
163
164
165
166
167
0 commit comments