mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-26 10:31:41 +00:00
31 lines
874 B
Dart
31 lines
874 B
Dart
![]() |
/// Flutter icons FlowyIconData
|
||
|
/// 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: FlowyIconData
|
||
|
/// fonts:
|
||
|
/// - asset: fonts/FlowyIconData.ttf
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
// ignore_for_file: constant_identifier_names
|
||
|
|
||
|
import 'package:flutter/widgets.dart';
|
||
|
|
||
|
class FlowyIconData {
|
||
|
FlowyIconData._();
|
||
|
|
||
|
static const _kFontFam = 'FlowyIconData';
|
||
|
static const String? _kFontPkg = null;
|
||
|
|
||
|
static const IconData drop_down_hide =
|
||
|
IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
||
|
static const IconData drop_down_show =
|
||
|
IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
||
|
}
|