Skip to content

Commit

Permalink
Merge pull request #858 from TinhHuynh/fix_readme_example
Browse files Browse the repository at this point in the history
fix example in README.md
  • Loading branch information
sarbagyastha committed Aug 7, 2023
2 parents 918d56e + e46d17a commit c6c07e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/youtube_player_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ YoutubePlayerController _controller = YoutubePlayerController(
YoutubePlayer(
controller: _controller,
showVideoProgressIndicator: true,
videoProgressIndicatorColor: Colors.amber,
progressColors: ProgressColors(
playedColor: Colors.amber,
handleColor: Colors.amberAccent,
progressIndicatorColor: Colors.amber,
progressColors: const ProgressBarColors(
playedColor: Colors.amber,
handleColor: Colors.amberAccent,
),
onReady () {
_controller.addListener(listener);
onReady: () {
_controller.addListener(listener);
},
),
```
Expand Down

0 comments on commit c6c07e1

Please sign in to comment.