Fix overflow issue

codemagic-setup
Hank Grabowski 2023-04-04 13:54:08 -04:00
rodzic d5c54126bf
commit c9138ce92b
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -70,6 +70,10 @@ class _MediaKitAvControlState extends State<MediaKitAvControl> {
setState(() {}); setState(() {});
} }
double get height => widget.height - 50;
double get width => widget.width;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
print('Building MediaKit Control'); print('Building MediaKit Control');
@ -86,8 +90,8 @@ class _MediaKitAvControlState extends State<MediaKitAvControl> {
children: [ children: [
Video( Video(
controller: controller, controller: controller,
width: widget.width, width: width,
height: widget.height, height: height,
), ),
Row( Row(
children: [ children: [