Files
feeddeck/app/lib/utils/font.dart
2023-09-03 16:16:38 +02:00

18 lines
361 B
Dart

import 'dart:io' show Platform;
import 'package:flutter/foundation.dart' show kIsWeb;
/// [getMonospaceFontFamily] returns the correct monospace font family for the
/// current platform.
String getMonospaceFontFamily() {
if (kIsWeb) {
return 'Courier';
}
if (Platform.isIOS || Platform.isMacOS) {
return 'Courier';
}
return 'monospace';
}