Remove unavailable progress indicator in downgraded Flutter

This commit is contained in:
Vishnu Mohandas 2020-09-28 00:24:53 +05:30
parent 3591e5863e
commit 64b61ad6f0

View file

@ -134,8 +134,7 @@ class _VideoWidgetState extends State<VideoWidget> {
size: Size.square(30),
child: _progress == null || _progress == 1
? CupertinoActivityIndicator()
: CupertinoActivityIndicator.partiallyRevealed(
progress: _progress),
: CircularProgressIndicator(value: _progress),
),
),
]);