Skip to content

Commit

Permalink
fix issue #6 and update to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asjqkkkk committed Apr 20, 2020
1 parent 52f312b commit 62f0234
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#### [1.1.0] - fix issue [#6](https://github.com/asjqkkkk/markdown_widget/issues/6)

#### [1.0.9] - add `LinkGesture` to `PConfig` to fix issue [#4](https://github.com/asjqkkkk/markdown_widget/issues/4)

#### [1.0.8] - add `CommonStyle` to title, add `selectable` to `PConfig`
Expand Down
2 changes: 1 addition & 1 deletion lib/tags/p.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class P {
WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.center,
}) {
final configSelectable =
selectable ?? StyleConfig().pConfig.selectable ?? true;
selectable ?? StyleConfig().pConfig?.selectable ?? true;
return isWeb()
? buildWebRichText(children, parentNode, textStyle, configSelectable,
crossAxisAlignment)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: markdown_widget
description: A new markdown package. It supports TOC function, HTML video and img tag,and it works well on both the web and mobile
version: 1.0.9
version: 1.1.0
verified publisher:
- [email protected]
homepage: https://github.com/asjqkkkk/markdown_widget
Expand Down

0 comments on commit 62f0234

Please sign in to comment.