Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2019-05-25 18:46:09 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a21a10589b33849f8c314acdc4c12b749f95534c
a21a1058
1 parent
0a98e6bd
Use list litteral
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pdf/lib/src/ttffont.dart
pdf/lib/src/ttffont.dart
View file @
a21a105
...
...
@@ -164,7 +164,7 @@ class PdfTtfFont extends PdfFont {
}
final
Runes
runes
=
s
.
runes
;
final
List
<
int
>
bytes
=
List
<
int
>()
;
final
List
<
int
>
bytes
=
<
int
>[]
;
runes
.
forEach
(
bytes
.
add
);
final
Iterable
<
PdfFontMetrics
>
metrics
=
bytes
.
map
(
glyphMetrics
);
...
...
Please
register
or
login
to post a comment