mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-05 23:42:58 +00:00

* chore: upgrade to flutter 3.19.0 * chore: adjust to the latest flutter convention * chore: update CI flutter version * fix: flutter analyze * fix: flutter analyze * fix: flutter analyze * chore: fix docker build
32 lines
883 B
Dart
32 lines
883 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
|
|
///
|
|
///
|
|
///
|
|
library;
|
|
// 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);
|
|
}
|