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