diff --git a/CHANGELOG.md b/CHANGELOG.md index ea83e903..e1d008b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [2.0.19] +* When uploading a video, applying indicator. + ## [2.0.18] * Make toolbar dividers optional. diff --git a/lib/src/widgets/video_app.dart b/lib/src/widgets/video_app.dart index 6d080f24..b0967451 100644 --- a/lib/src/widgets/video_app.dart +++ b/lib/src/widgets/video_app.dart @@ -37,7 +37,8 @@ class _VideoAppState extends State { setState(() {}); }).catchError((error) { setState(() {}); - });; + }); + ; } @override @@ -57,9 +58,10 @@ class _VideoAppState extends State { return RichText( text: TextSpan(text: widget.videoUrl, style: defaultStyles.link)); } else if (!_controller.value.isInitialized) { - return VideoProgressIndicator(_controller, - allowScrubbing: true, - colors: VideoProgressColors(playedColor: Colors.blue), + return VideoProgressIndicator( + _controller, + allowScrubbing: true, + colors: const VideoProgressColors(playedColor: Colors.blue), ); } diff --git a/pubspec.yaml b/pubspec.yaml index 2c9f219b..75a90c92 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 2.0.18 +version: 2.0.19 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill