We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88db81d commit f46f427Copy full SHA for f46f427
lib/flutter_vlc_player.dart
@@ -1,11 +1,11 @@
1
import 'dart:async';
2
-import 'dart:typed_data';
3
import 'dart:io';
+import 'dart:typed_data';
4
5
+import 'package:cryptoutils/cryptoutils.dart';
6
import 'package:flutter/cupertino.dart';
7
import 'package:flutter/foundation.dart';
8
import 'package:flutter/rendering.dart';
-import 'package:cryptoutils/cryptoutils.dart';
9
import 'package:flutter/services.dart';
10
11
enum PlayingState { STOPPED, BUFFERING, PLAYING }
@@ -67,6 +67,7 @@ class _VlcPlayerState extends State<VlcPlayer>
67
68
@override
69
Widget build(BuildContext context) {
70
+ super.build(context);
71
return AspectRatio(
72
aspectRatio: widget.aspectRatio,
73
child: Stack(
0 commit comments