Snæbjörn Valur Lilliendahl

Results 10 comments of Snæbjörn Valur Lilliendahl

Just a heads up! You can't find the App ID Prefix in AppStoreConnect. You have to check for the corresponding App ID Prefix here: https://developer.apple.com/account/resources/identifiers/bundleId

I can confirm that this plugins works for iOS14.

This could possibly help you out. Add this dependency in your pubspec.yaml ``` # This plugin has issues, lower flutter_mobx dependency to version: "2.0.7+2" flutter_mobx: ^2.0.6+1 mobx: 2.0.7+2 ``` There...

I was looking at the video plugin and from my understanding the video plugin doesn't currently support closed captions.

I was able to build on @rakyat-game code and read VTT files and default to subtitles in the HLS stream. The solution is rather dirty, language default is hardcoded and...

Hey @cbenhagen ! I went over #188 and it looks pretty solid. My implementation depends on changes to the video_player plugin. Exoplayer takes care of reading external or embedded subtitles...

I’ll be back from vacation in a week and then i’ll refine the code and submit a pr to chewie and the video_player plugin.

+1 I'm having this problem with ListViews inside ListViews. Not all the images reload with the placeholder appearing first, but it seems to happen randomly. Also it seems to happen...

The solution here on StackOverflow worked for me! https://stackoverflow.com/q/54377133/4254290 ``` class CustomImageCache extends WidgetsFlutterBinding { @override ImageCache createImageCache() { ImageCache imageCache = super.createImageCache(); // Set your image cache size imageCache.maximumSizeBytes...

I haven't had any time to make this code pretty and make a PR, if anyone is able to they are welcome. ``` class CastMedia { final String contentId; String...