CircularProgressIndicator.adaptive(

This commit is contained in:
Krille Fear 2021-10-10 13:38:06 +02:00
commit 5796e41d2a
16 changed files with 37 additions and 24 deletions

View file

@ -41,7 +41,7 @@ class VideoViewerView extends StatelessWidget {
child: controller.error != null
? Text(controller.error.toString())
: (controller.chewieController == null
? CircularProgressIndicator(strokeWidth: 2)
? CircularProgressIndicator.adaptive(strokeWidth: 2)
: Chewie(
controller: controller.chewieController,
)),