Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f5c3b75d
Commit
f5c3b75d
authored
Mar 24, 2016
by
Jason Simmons
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2876 from jason-simmons/font_include_asset
Add embedded font assets to the asset list
parents
dff356fc
f17b68d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
flx.dart
packages/flutter_tools/lib/src/flx.dart
+17
-0
No files found.
packages/flutter_tools/lib/src/flx.dart
View file @
f5c3b75d
...
...
@@ -81,6 +81,23 @@ Map<_Asset, List<_Asset>> _parseAssets(Map<String, dynamic> manifestDescriptor,
}
}
}
// Add assets referenced in the fonts section of the manifest.
if
(
manifestDescriptor
.
containsKey
(
'fonts'
))
{
for
(
Map
<
String
,
dynamic
>
family
in
manifestDescriptor
[
'fonts'
])
{
List
<
Map
<
String
,
dynamic
>>
fonts
=
family
[
'fonts'
];
if
(
fonts
==
null
)
continue
;
for
(
Map
<
String
,
dynamic
>
font
in
fonts
)
{
String
asset
=
font
[
'asset'
];
if
(
asset
==
null
)
continue
;
_Asset
baseAsset
=
new
_Asset
(
base:
assetBase
,
key:
asset
);
result
[
baseAsset
]
=
<
_Asset
>[];
}
}
}
return
result
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment