You can set the font feature to use tabularFigures.
// import 'dart:ui';
Text(
_getTimeString(),
style: TextStyle(
fontFeatures: [
FontFeature.tabularFigures()
],
),
),
Before:

After:

See also:
- Font Features in Flutter
You can set the font feature to use tabularFigures.
// import 'dart:ui';
Text(
_getTimeString(),
style: TextStyle(
fontFeatures: [
FontFeature.tabularFigures()
],
),
),
Before:

After:

See also: