birzha_mobile/lib/components/appBarIcons.dart

27 lines
790 B
Dart
Raw Normal View History

2023-02-27 07:23:37 +00:00
/// Flutter icons MyFlutterApp
/// Copyright (C) 2021 by original authors @ fluttericon.com, fontello.com
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
///
/// To use this font, place it in your fonts/ directory and include the
/// following in your pubspec.yaml
///
/// flutter:
/// fonts:
/// - family: MyFlutterApp
/// fonts:
/// - asset: fonts/MyFlutterApp.ttf
///
///
///
import 'package:flutter/widgets.dart';
class AppBarIcons {
AppBarIcons._();
static const _kFontFam = 'MyFlutterApp';
static const String? _kFontPkg = null;
static const IconData info = IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg);
static const IconData search = IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg);
}