Remove unavailable progress indicator in downgraded Flutter
This commit is contained in:
parent
3591e5863e
commit
64b61ad6f0
1 changed files with 1 additions and 2 deletions
|
@ -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),
|
||||
),
|
||||
),
|
||||
]);
|
||||
|
|
Loading…
Add table
Reference in a new issue