質問編集履歴
2
コード追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,4 +9,48 @@
|
|
9
9
|
```
|
10
10
|
とでるので、これが原因かもしれません。
|
11
11
|
しかし、変換はできていて、tffファイルもみた感じ問題なさそうでした。
|
12
|
-
(68ba0c0379f60f20215c39abe08e2979.png)
|
12
|
+
(68ba0c0379f60f20215c39abe08e2979.png)
|
13
|
+
|
14
|
+
```
|
15
|
+
/// Flutter icons SettingIcon
|
16
|
+
/// Copyright (C) 2020 by original authors @ fluttericon.com, fontello.com
|
17
|
+
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
|
18
|
+
///
|
19
|
+
/// To use this font, place it in your fonts/ directory and include the
|
20
|
+
/// following in your pubspec.yaml
|
21
|
+
///
|
22
|
+
/// flutter:
|
23
|
+
/// fonts:
|
24
|
+
/// - family: SettingIcon
|
25
|
+
/// fonts:
|
26
|
+
/// - asset: fonts/SettingIcon.ttf
|
27
|
+
///
|
28
|
+
///
|
29
|
+
/// * Linearicons Free, Copyright (C) Linearicons.com
|
30
|
+
/// Author: Perxis
|
31
|
+
/// License: CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
|
32
|
+
/// Homepage: https://linearicons.com
|
33
|
+
///
|
34
|
+
import 'package:flutter/widgets.dart';
|
35
|
+
|
36
|
+
class SettingIcon {
|
37
|
+
SettingIcon._();
|
38
|
+
|
39
|
+
static const _kFontFam = 'SettingIcon';
|
40
|
+
static const _kFontPkg = null;
|
41
|
+
|
42
|
+
static const IconData setting_icon = IconData(0xe810, fontFamily: _kFontFam, fontPackage: _kFontPkg);
|
43
|
+
}
|
44
|
+
```
|
45
|
+
```
|
46
|
+
fonts:
|
47
|
+
- family: Schyler
|
48
|
+
fonts:
|
49
|
+
# # - asset: fonts/Schyler-Regular.ttf
|
50
|
+
# # - asset: fonts/Schyler-Italic.ttf
|
51
|
+
- asset: fonts/present.ttf
|
52
|
+
- asset: fonts/setting.ttf
|
53
|
+
# style: italic
|
54
|
+
# - family: Trajan Pro
|
55
|
+
# fonts:
|
56
|
+
```
|
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,5 +9,4 @@
|
|
9
9
|
```
|
10
10
|
とでるので、これが原因かもしれません。
|
11
11
|
しかし、変換はできていて、tffファイルもみた感じ問題なさそうでした。
|
12
|
-
可能性としてはFlutter Genreraot
|
13
12
|
(68ba0c0379f60f20215c39abe08e2979.png)
|