Upgrade to 2.0.19

pull/470/head
Cheryl 3 years ago
parent e0205a3cff
commit b72a701e65
  1. 3
      CHANGELOG.md
  2. 10
      lib/src/widgets/video_app.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [2.0.19]
* When uploading a video, applying indicator.
## [2.0.18] ## [2.0.18]
* Make toolbar dividers optional. * Make toolbar dividers optional.

@ -37,7 +37,8 @@ class _VideoAppState extends State<VideoApp> {
setState(() {}); setState(() {});
}).catchError((error) { }).catchError((error) {
setState(() {}); setState(() {});
});; });
;
} }
@override @override
@ -57,9 +58,10 @@ class _VideoAppState extends State<VideoApp> {
return RichText( return RichText(
text: TextSpan(text: widget.videoUrl, style: defaultStyles.link)); text: TextSpan(text: widget.videoUrl, style: defaultStyles.link));
} else if (!_controller.value.isInitialized) { } else if (!_controller.value.isInitialized) {
return VideoProgressIndicator(_controller, return VideoProgressIndicator(
allowScrubbing: true, _controller,
colors: VideoProgressColors(playedColor: Colors.blue), allowScrubbing: true,
colors: const VideoProgressColors(playedColor: Colors.blue),
); );
} }

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 2.0.18 version: 2.0.19
#author: bulletjournal #author: bulletjournal
homepage: https://bulletjournal.us/home/index.html homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save