Daniel van der Merwe
Daniel van der Merwe
This signature totally breaks my usage of UUIDs. A lot of places expect UUIDs to be a string, a common one is `` which is now broken.
I'm having the same issue. Any of the following config settings results in a `1072x1920` video. ``` nextLevel.videoConfiguration.aspectRatio = .instagramStories nextLevel.videoConfiguration.aspectRatio = .custom(w: 9, h: 16) nextLevel.videoConfiguration.dimensions = CGSize(width: 1080,...
I'd like to add that text with ` ` or similar HTML entities crashes the XMLParser
The problem I was having was that I was calling `[SplashScreen show];` too early in my AppDelegate. Make sure it's after the call to `[self.window makeKeyAndVisible];`
It's not a problem... it's just incorrect usage. If you want help post your AppDelegate.m `applicationDidLaunch` code function
@ralcon likely you haven't linked the library properly. Are you sure you ran `react-native link react-native-splash-screen`?
It would probably look something like this: ``` require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "react-native-photo-view" s.version = package['version'].gsub(/v|-beta/, '') s.summary = package['description'] s.author = package['author']...
As a temporary fix: https://github.com/alwx/react-native-photo-view/pull/111