Skip to content

Commit cc0c17e

Browse files
author
Illia Romanenko
committed
Update to 6 to indicate breaking change / Null-Safety
1 parent 7f6e38b commit cc0c17e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

flutter_vlc_player/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.0.1
2+
* Fix issue with black screen / offstage
3+
Credits to Mitch Ross (https://github.com/mitchross)
4+
15
## 6.0.0
26
* Support Flutter V2 Null Safety
37
Credits to Mitch Ross (https://github.com/mitchross)

flutter_vlc_player/lib/src/flutter_vlc_player.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class _VlcPlayerState extends State<VlcPlayer>
8888
child: widget.placeholder ?? Container(),
8989
),
9090
Offstage(
91-
offstage: _isInitialized,
91+
offstage: !_isInitialized,
9292
child: vlcPlayerPlatform
9393
.buildView(widget.controller.onPlatformViewCreated),
9494
),

flutter_vlc_player/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_vlc_player
22
description: A VLC-powered alternative to Flutter's video_player. Supports multiple players on one screen.
3-
version: 6.0.0
3+
version: 6.0.1
44
homepage: https://github.com/solid-software/flutter_vlc_player/
55

66
environment:

0 commit comments

Comments
 (0)