質問編集履歴
2
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,3 +21,91 @@
|
|
21
21
|
しかし、変換はできていて、tffファイルもみた感じ問題なさそうでした。
|
22
22
|
|
23
23
|
![イ![イメージ説明](e8459152f8a52ef5e91d119959db4913.png)(68ba0c0379f60f20215c39abe08e2979.png)
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
/// Flutter icons SettingIcon
|
30
|
+
|
31
|
+
/// Copyright (C) 2020 by original authors @ fluttericon.com, fontello.com
|
32
|
+
|
33
|
+
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
|
34
|
+
|
35
|
+
///
|
36
|
+
|
37
|
+
/// To use this font, place it in your fonts/ directory and include the
|
38
|
+
|
39
|
+
/// following in your pubspec.yaml
|
40
|
+
|
41
|
+
///
|
42
|
+
|
43
|
+
/// flutter:
|
44
|
+
|
45
|
+
/// fonts:
|
46
|
+
|
47
|
+
/// - family: SettingIcon
|
48
|
+
|
49
|
+
/// fonts:
|
50
|
+
|
51
|
+
/// - asset: fonts/SettingIcon.ttf
|
52
|
+
|
53
|
+
///
|
54
|
+
|
55
|
+
///
|
56
|
+
|
57
|
+
/// * Linearicons Free, Copyright (C) Linearicons.com
|
58
|
+
|
59
|
+
/// Author: Perxis
|
60
|
+
|
61
|
+
/// License: CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
|
62
|
+
|
63
|
+
/// Homepage: https://linearicons.com
|
64
|
+
|
65
|
+
///
|
66
|
+
|
67
|
+
import 'package:flutter/widgets.dart';
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
class SettingIcon {
|
72
|
+
|
73
|
+
SettingIcon._();
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
static const _kFontFam = 'SettingIcon';
|
78
|
+
|
79
|
+
static const _kFontPkg = null;
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
static const IconData setting_icon = IconData(0xe810, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
```
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
fonts:
|
92
|
+
|
93
|
+
- family: Schyler
|
94
|
+
|
95
|
+
fonts:
|
96
|
+
|
97
|
+
# # - asset: fonts/Schyler-Regular.ttf
|
98
|
+
|
99
|
+
# # - asset: fonts/Schyler-Italic.ttf
|
100
|
+
|
101
|
+
- asset: fonts/present.ttf
|
102
|
+
|
103
|
+
- asset: fonts/setting.ttf
|
104
|
+
|
105
|
+
# style: italic
|
106
|
+
|
107
|
+
# - family: Trajan Pro
|
108
|
+
|
109
|
+
# fonts:
|
110
|
+
|
111
|
+
```
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,6 +20,4 @@
|
|
20
20
|
|
21
21
|
しかし、変換はできていて、tffファイルもみた感じ問題なさそうでした。
|
22
22
|
|
23
|
-
可能性としてはFlutter Genreraot
|
24
|
-
|
25
23
|
![イ![イメージ説明](e8459152f8a52ef5e91d119959db4913.png)(68ba0c0379f60f20215c39abe08e2979.png)
|