mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-25 18:06:00 +00:00

* refactor: rename structs * chore: read database id from view * chore: fix open database error because of create a database view for database id * chore: fix tests * chore: rename datbase id to view id in flutter * refactor: move grid and board to database view folder * refactor: rename functions * refactor: move calender to datbase view folder * refactor: rename app_flowy to appflowy_flutter * chore: reanming * chore: fix freeze gen * chore: remove todos * refactor: view process events * chore: add link database test * chore: just open view if there is opened database
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);
|
|
}
|