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-09-13 20:54:52 -0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8d133f3d8071831971385d004b94b49cd4aae4e9
8d133f3d
1 parent
ca1a8704
Allow overriding defaultCache
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
printing/CHANGELOG.md
printing/lib/src/cache.dart
printing/CHANGELOG.md
View file @
8d133f3
...
...
@@ -10,6 +10,7 @@
-
Update pdfium library to 4627
-
Apply Flutter 2.5 coding style
-
Add WidgetWraper.fromWidget()
-
Allow overriding defaultCache
## 5.5.0
...
...
printing/lib/src/cache.dart
View file @
8d133f3
...
...
@@ -26,7 +26,7 @@ abstract class PdfBaseCache {
const
PdfBaseCache
();
/// The default cache used when none specified
static
final
defaultCache
=
PdfMemoryCache
();
static
PdfBaseCache
defaultCache
=
PdfMemoryCache
();
/// Add some data to the cache
Future
<
void
>
add
(
String
key
,
Uint8List
bytes
);
...
...
Please
register
or
login
to post a comment