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]
* Make toolbar dividers optional.

@ -37,7 +37,8 @@ class _VideoAppState extends State<VideoApp> {
setState(() {});
}).catchError((error) {
setState(() {});
});;
});
;
}
@override
@ -57,9 +58,10 @@ class _VideoAppState extends State<VideoApp> {
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),
);
}

@ -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

Loading…
Cancel
Save