Skip to content

Commit c6d0679

Browse files
authored
[video_player] Update README.md (flutter#3975)
1 parent 2807531 commit c6d0679

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

packages/video_player/video_player/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.5
2+
3+
* Update example code in README to fix broken url.
4+
15
## 2.1.4
26

37
* Add an exoplayer URL to the maven repositories to address

packages/video_player/video_player/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class _VideoAppState extends State<VideoApp> {
7979
void initState() {
8080
super.initState();
8181
_controller = VideoPlayerController.network(
82-
'https://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_20mb.mp4')
82+
'https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_20mb.mp4')
8383
..initialize().then((_) {
8484
// Ensure the first frame is shown after the video is initialized, even before the play button has been pressed.
8585
setState(() {});

packages/video_player/video_player/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for displaying inline video with other Flutter
33
widgets on Android, iOS, and web.
44
repository: https://github.com/flutter/plugins/tree/master/packages/video_player/video_player
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
6-
version: 2.1.4
6+
version: 2.1.5
77

88
environment:
99
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)