chore: Update dependencies

This commit is contained in:
Christian Pauly 2022-08-14 16:59:21 +02:00
commit 7a74a8a93f
52 changed files with 163 additions and 175 deletions

View file

@ -20,10 +20,10 @@ class EventVideoPlayer extends StatefulWidget {
const EventVideoPlayer(this.event, {Key? key}) : super(key: key);
@override
_EventVideoPlayerState createState() => _EventVideoPlayerState();
EventVideoPlayerState createState() => EventVideoPlayerState();
}
class _EventVideoPlayerState extends State<EventVideoPlayer> {
class EventVideoPlayerState extends State<EventVideoPlayer> {
ChewieController? _chewieManager;
bool _isDownloading = false;
String? _networkUri;