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-04-23 06:53:02 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
49b847f5e25e4527178cb9e69d1f7ec22a414515
49b847f5
1 parent
5867d947
Add PdfOutline.toString()
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/outline.dart
pdf/CHANGELOG.md
View file @
49b847f
@@ -5,6 +5,7 @@
@@ -5,6 +5,7 @@
5
-
Fix Text.softWrap behavior
5
-
Fix Text.softWrap behavior
6
-
Add TableOfContent Widget
6
-
Add TableOfContent Widget
7
-
Add LinearProgressIndicator
7
-
Add LinearProgressIndicator
8
+
-
Add PdfOutline.toString()
8
9
9
## 3.3.0
10
## 3.3.0
10
11
pdf/lib/src/pdf/outline.dart
View file @
49b847f
@@ -195,4 +195,9 @@ class PdfOutline extends PdfObjectDict {
@@ -195,4 +195,9 @@ class PdfOutline extends PdfObjectDict {
195
195
196
return
c
;
196
return
c
;
197
}
197
}
198
+
199
+
@override
200
+
String
toString
()
{
201
+
return
'
$runtimeType
$anchor
$title
'
;
202
+
}
198
}
203
}
Please
register
or
login
to post a comment