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
2024-02-21 10:29:36 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f933a438bad18ed07cfb2465dd3e6000b04772f1
f933a438
1 parent
9e77044a
Fix lints
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
pdf/lib/src/pdf/graphic_state.dart
printing/lib/src/printing.dart
pdf/lib/src/pdf/graphic_state.dart
View file @
f933a43
...
...
@@ -142,7 +142,7 @@ class PdfGraphicState {
}
@override
bool
operator
==(
dynamic
other
)
{
bool
operator
==(
Object
other
)
{
if
(
other
is
!
PdfGraphicState
)
{
return
false
;
}
...
...
printing/lib/src/printing.dart
View file @
f933a43
...
...
@@ -88,7 +88,10 @@ mixin Printing {
return
a
.
name
.
compareTo
(
b
.
name
);
});
// ignore: use_build_context_synchronously
if
(!
context
.
mounted
)
{
return
null
;
}
return
await
showDialog
<
Printer
>(
context:
context
,
builder:
(
context
)
=>
SimpleDialog
(
...
...
Please
register
or
login
to post a comment