79143410

Date: 2024-10-31 03:39:26
Score: 1
Natty:
Report link

Disabling contextual alternatives via the text style worked for my use case:

int myNumber = 1;
Text("This is my number ($myNumber)",
  style: TextStyle(
    fontFeatures: [
      // Disable contextual alternatives (1) => ①
      const FontFeature.disable('calt'),
    ],
  ),
),
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stuart Orchard