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
2020-02-02 18:36:36 -0500
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e8b42e27d53fff8ad35ac647e4c14d825ed7b2e3
e8b42e27
1 parent
f02fef13
Fix Bullet widget styling
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
pdf/CHANGELOG.md
pdf/lib/widgets/content.dart
pdf/CHANGELOG.md
View file @
e8b42e2
...
...
@@ -5,6 +5,7 @@
-
Fix Align debug painting
-
Fix GridView when empty
-
Reorder MultiPage paint operations
-
Fix Bullet widget styling
## 1.4.1
...
...
pdf/lib/widgets/content.dart
View file @
e8b42e2
...
...
@@ -173,14 +173,18 @@ class Bullet extends StatelessWidget {
width:
bulletSize
,
height:
bulletSize
,
margin:
bulletMargin
,
decoration:
BoxDecoration
(
color:
bulletColor
,
shape:
bulletShape
),
decoration:
BoxDecoration
(
color:
bulletColor
,
shape:
bulletShape
),
),
Expanded
(
child:
Text
(
text
,
child:
Text
(
text
,
textAlign:
textAlign
,
style:
Theme
.
of
(
context
).
bulletStyle
))
]));
style:
Theme
.
of
(
context
).
bulletStyle
.
merge
(
style
),
),
)
],
),
);
}
}
...
...
Please
register
or
login
to post a comment