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-03-29 14:25:54 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4ca197ceaabbf81487e3e985c65f086bd2771779
4ca197ce
1 parent
24e095a7
Fix warning in date function
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pdf/lib/src/stream.dart
pdf/lib/src/stream.dart
View file @
4ca197c
...
...
@@ -152,7 +152,7 @@ class PdfStream {
final
String
hour
=
utcDate
.
hour
.
toString
().
padLeft
(
2
,
'0'
);
final
String
minute
=
utcDate
.
minute
.
toString
().
padLeft
(
2
,
'0'
);
final
String
second
=
utcDate
.
second
.
toString
().
padLeft
(
2
,
'0'
);
putText
(
"D:
${year}${month}${day}${hour}${minute}${second}
Z"
);
putText
(
'D:
$year$month$day$hour$minute${second}
Z'
);
}
void
putNumArray
(
List
<
double
>
values
)
{
...
...
Please
register
or
login
to post a comment