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
2021-05-19 19:24:10 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1816b8eacd15d118f5f259d37a56e6bf6993c0c4
1816b8ea
1 parent
49a20910
Fix Signature Flags
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/signature.dart
pdf/CHANGELOG.md
View file @
1816b8e
...
...
@@ -11,6 +11,7 @@
-
Add PdfColor.flatten
-
Add A6 page format
-
Apply Flutter 2.2 format
-
Fix Signature Flags
## 3.3.0
...
...
pdf/lib/src/pdf/signature.dart
View file @
1816b8e
...
...
@@ -69,7 +69,7 @@ class PdfSignature extends PdfObjectDict {
int
get
flagsValue
=>
flags
.
isEmpty
?
0
:
flags
.
map
<
int
>((
PdfSigFlags
e
)
=>
1
>>
e
.
index
)
.
map
<
int
>((
PdfSigFlags
e
)
=>
1
<<
e
.
index
)
.
reduce
((
int
a
,
int
b
)
=>
a
|
b
);
final
crl
=
<
PdfObjectStream
>[];
...
...
Please
register
or
login
to post a comment