description property

String get description

Implementation

String get description {
  switch (this) {
    case UnscaleMode.full:
      return 'Uses AdaptKit computed UI scale. Preserves physical pixels across screen sizes.';
    case UnscaleMode.context:
      return 'Uses only system text scale factor from MediaQuery. Opts out of UI scaling but keeps text scaling.';
  }
}