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-07-29 08:11:31 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e6f8d2dd2b3b187c0ec8ae266c24254f1b03a906
e6f8d2dd
1 parent
48b633ac
Fix Theme.withFont factory
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
pdf/CHANGELOG.md
pdf/lib/widgets/theme.dart
pdf/CHANGELOG.md
View file @
e6f8d2d
...
...
@@ -3,6 +3,7 @@
## 1.3.18
-
Implement InlineSpan and WidgetSpan
-
Fix Theme.withFont factory
## 1.3.17
...
...
pdf/lib/widgets/theme.dart
View file @
e6f8d2d
...
...
@@ -284,6 +284,7 @@ class Theme extends Inherited {
factory
Theme
.
withFont
({
Font
base
,
Font
bold
,
Font
italic
,
Font
boldItalic
})
{
final
TextStyle
defaultStyle
=
TextStyle
.
defaultStyle
().
copyWith
(
font:
base
,
fontNormal:
base
,
fontBold:
bold
,
fontItalic:
italic
,
fontBoldItalic:
boldItalic
);
...
...
Please
register
or
login
to post a comment