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.
Bowl_in/Sources/bowlin_project/lib/presentation/font.dart

18 lines
594 B

import 'package:flutter/widgets.dart';
class BowlInFont {
BowlInFont._();
static const _kFontFam = 'BowlInFont';
static const String? _kFontPkg = null;
static const IconData stats_icon =
IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg);
static const IconData profil_icon =
IconData(0xe804, fontFamily: _kFontFam, fontPackage: _kFontPkg);
static const IconData home_icon =
IconData(0xe805, fontFamily: _kFontFam, fontPackage: _kFontPkg);
static const IconData rank_icon =
IconData(0xe806, fontFamily: _kFontFam, fontPackage: _kFontPkg);
}