Skip to content

Commit

Permalink
add placeholder for tv
Browse files Browse the repository at this point in the history
change behavior when loading a public playlist, should mostly affect playlists with a lot of videos
  • Loading branch information
lamarios committed Aug 10, 2023
1 parent 5413338 commit 41d30d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/views/components/placeholders.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class AnimatedPlaceHolder extends StatelessWidget {
@override
Widget build(BuildContext context) {
return FadeIn(
child: Animate(autoPlay: true, onComplete: (controller) => controller.repeat(reverse: true), effects: const [FadeEffect(end: 0.1, begin: 0.4, duration: Duration(seconds: 2))], child: child));
child: Animate(autoPlay: true, onComplete: (controller) => controller.repeat(reverse: true), effects: const [FadeEffect(begin: 0.3, end: 0.6, duration: Duration(seconds: 2))], child: child));
}
}

Expand Down

0 comments on commit 41d30d0

Please sign in to comment.