You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pinball/packages/pinball_components/lib/gen/pinball_fonts.dart

15 lines
455 B

import 'package:pinball_components/gen/fonts.gen.dart';
const String _fontPath = 'packages/pinball_components/';
/// Class with the fonts available on the pinball game
class PinballFonts {
PinballFonts._();
/// Mono variation of the Pixeloid font
static const String pixeloidMono = '$_fontPath/${FontFamily.pixeloidMono}';
/// Sans variation of the Pixeloid font
static const String pixeloidSans = '$_fontPath/${FontFamily.pixeloidSans}';
}