류지영

Results 11 comments of 류지영

thank you for the reply. I am jiyoung ryu, an android and flutter junior developer working on a project that needs to play a video in a desktop app on...

class HomeScreen extends StatefulWidget { const HomeScreen({Key? key}) : super(key: key); @override State createState() => _HomeScreenState(); } class _HomeScreenState extends State { VideoPlayerController? videoPlayerController; @override void initState() { super.initState(); initializeVideoPlayerController();...

This is the error log when building the code above. how can i solve it? [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: PlatformException(video_player, not implemented, null, null) #0 VideoPlayerMacOsApi.create (package:video_player_macos/src/messages.g.dart:298:7) #1 VideoPlayerMacOs.create (package:video_player_macos/src/video_player_macos.dart:65:37) #2...

This is the error log that is confirmed when building on macOS. how can i solve it? I'm using macOS Ventura 13.3.1. class HomeScreen extends StatefulWidget { const HomeScreen({Key? key})...

I'm looking forward to playing the sample.mp4 video in the videos folder under the assets folder in my macOS desktop app. Is there something wrong with my code? VideoPlayerController.asset('assets/videos/sample.mp4');

@jonbhanson Redmi Note 13 device (Xiaomi HyperOS, Android 14)

The same issue is also occurring on Android. How can I resolve this?

I am facing the same issue. I am using a Redmi Note 13 device (Xiaomi HyperOS, Android 14), and even after running flutter_native_splash:create, only the background color changes, but my...