Skip to content

Commit

Permalink
BetterPlayer 0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jhomlalabsg committed Aug 1, 2020
1 parent 9e2c64d commit c5bba4e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 0.0.11
* Fixed iOS crash on dispose
* Added player headers support
* Removed unused dependency
* Updated dependencies
* Dart Analysis refactor

## 0.0.10
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ packages:
name: flutter_widget_from_html_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.3+3"
version: "0.4.2"
flutter_widgets:
dependency: "direct main"
description:
Expand Down
9 changes: 5 additions & 4 deletions lib/src/subtitles/better_player_subtitles_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,11 @@ class _BetterPlayerSubtitlesDrawerState
Widget _buildHtmlWidget(String text, TextStyle textStyle) {
assert(text != null);
assert(textStyle != null);
return HtmlWidget(text,
textStyle: textStyle,
bodyPadding: const EdgeInsets.all(0),
tableCellPadding: const EdgeInsets.all(0));
return HtmlWidget(
text,
textStyle: textStyle,
tableCellPadding: const EdgeInsets.all(0),
);
}

BetterPlayerSubtitlesConfiguration setupDefaultConfiguration() {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ packages:
name: flutter_widget_from_html_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.3+2"
version: "0.4.2"
flutter_widgets:
dependency: "direct main"
description:
Expand Down
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies:
flutter_widgets: ^0.1.12
pedantic: ^1.8.0
meta: ^1.0.5
flutter_widget_from_html_core: ^0.4.2


dev_dependencies:
Expand Down

0 comments on commit c5bba4e

Please sign in to comment.