File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
packages/flutter_html_video Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ ## [ 3.0.0-alpha.4] - April 20, 2022:
2+ * Fixed compilation issue
3+
14## [ 3.0.0-alpha.3] - April 14, 2022:
25* Fixed crash when iframe or video tags used unsupported/incorrect height or width
36
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class _VideoWidgetState extends State<VideoWidget> {
3838 @override
3939 void initState () {
4040 final attributes = widget.context.tree.element? .attributes ?? {};
41- sources = < String ? > [
41+ final sources = < String ? > [
4242 if (attributes['src' ] != null )
4343 attributes['src' ],
4444 ...ReplacedElement .parseMediaSources (widget.context.tree.element! .children),
Original file line number Diff line number Diff line change 11name : flutter_html_video
22description : Video widget for flutter_html.
3- version : 3.0.0-alpha.3
3+ version : 3.0.0-alpha.4
44homepage : https://github.com/Sub6Resources/flutter_html
55
66environment :
You can’t perform that action at this time.
0 commit comments