Eirik Stien

Results 3 comments of Eirik Stien

It's most likely the same issue as this one https://github.com/fluttercommunity/plus_plugins/issues/766

I face likely the same issue. It immediately closes crash the app, with no exceptions thrown, when calling `.setPlaylistItems()`. Running flutter: 1.12.13+hotfix.7 and flutter_plugin_playlist: ^0.1.5 on a physical iOS 13.3...

I made it working by providing the `options` argument to the `setPlaylistItems` method like so: ``` _player.setPlaylistItems( [], options: new PlaylistItemOptions( startPaused: true, )); ```