Brad Martin
Brad Martin
I've taken the default storyboard and ran it on every simulator in xcode 12: ``` iPad (8th generation) - SUCCESS iPad Air (4th generation) - SUCCESS iPad Pro (9.7 inch)...
There is a storyboard in there https://github.com/zoontek/react-native-bootsplash/blob/master/src/generate.ts#L50 so I'll look it over and see if I can drop that in (with tweaks to use the NS assets provided for launchscreen)...
Yea, there are some workarounds for now, but definitely something it looks like we're waiting on Apple to fix on their side for a permanent all-around solution that would work...
https://github.com/NativeScript/NativeScript/blob/72e096c50ed36b92c78a46c1bc0aed5c441e9522/packages/core/ui/text-base/index.android.ts#L499 Not sure if the `'` is needed in the replace. So locally I've removed it for now. Could be an easy fix just not sure if this breaks other...
so the current implementation hides on swipe and then shows in the reverse direction. Something like you're suggesting would be a new feature, it would be possible tho. I'd prob...
The current state of the plugin does not handle media sessions in the background (similar to Spotify or other music services). This is possible in terms of NativeScript and the...
Sorry for the delay in response. The issue lies with the listview recycling. So you'll definitely need some logic to handle this. I've never tried putting a video in a...
I have not tried this myself but I believe a good starting point (what I'd try) is to assign dynamic IDs to the videoplayers. Either index based or Id based...
I don't think so but if you can point me to a Cordova implementation (I assume this is a cordova plugin you've used) I can check the native APIs being...
That is correct. See [here](https://github.com/nstudio/nativescript-audio/blob/master/src/ios/player.ts#L105) for the implementation. Could try switching the player implementation out with https://developer.apple.com/documentation/avfoundation/avplayer class. I don't know the time/work involved. Would depend if it would be...