ionic 3 iPhone X hide status bar when open camera - ios

Basically I'm native iOS developer but I'm developing ionic app with version ionic 3.
In my App issue is that when I open default photo gallery in iPhone X for choose photo then statusBar is hide and looking so bad so how can I show statusBar when open default photo gallery.
Look at below screenshot so you will get more clear.
My App - ionic 3
Actually I want statusBar look like as below that is default in simulator.

After Googling I fixed my issue. Actually for solve this type of issue we need to go on relevant plug-in that has issue and choose your platform and need to fix there.
In my case I had to go on Camera Plug-in with iOS platform.
In the CDVCamera.m prefersStatusBarHidden method need to just pass NO like below
- (BOOL)prefersStatusBarHidden
{
return NO;
}
and my issue solved.
Hope this answer will be helpful to you.

Related

FLUTTER - Default flutter icon at Recent app in iOS

While I open the recent apps tab/screen on iOS I see the default flutter Icon at the top.
However I have uploaded all the file sizes for both Android and iOS.
Other than the recent app screen all the place is covered by my own AppIcon. How do I fix this?
Any help would be appreciated.
This happened with my app as well. For me, it was a caching issue. Completely uninstalling/reinstalling/clearing cache on the the app worked for me to solve it.

How to user iPhone X's prefersHomeIndicatorAutoHidden with Cordova

I'm creating an iPhone app with Cordova and having a problem with the home bar appearing above what it should.
The solution to this seems to be the prefersHomeIndicatorAutoHidden function as explained articleiphone-x-dealing-with-home-indicator.
However I'm not sure how this could be accessed or where it should be put in for the Cordova app.
Thanks!

React Native app flashing white after launch screen on iOS 11

We have more than 5 React Native apps published apps, and all app flashes to white between the launch screen and the first screen of the app. This creating wired behaviour and only noticeable on iOS 11.
We are using react-native-router-flux for navigation. I believe this issue is related to react-navigation because apps like UberEATS and Airbnb, which are also developed with React-Native are working fine. These apps have their own navigation library I think.
Anyone else noticed this problem? Any suggestion will be greatly appreciate.
I was able to fix this issue by adding custom splash screen, credits goes to react-native-splash-screen.
This issue is fixed in Xcode 9.2.

setting a view of dropbox in IOS 7 iPhone

I have integrate drop box API in my iPhone application. but when drop box view opens it will cut in ios 7.
it runs perfectly ios 6 but some part of view is hide under navigation bar in ios 7
how can i solve this issue? please help.!
i think you are using old SDK for drop box. please use new SDK from following link.
https://www.dropbox.com/developers/sync/sdks/ios
And follow Examples which are already provided in SDK
I hope it will work.

Display splash screen during app installation on Blackberry

I've been looking at several BlackBerry forums but wasn't able to find any reference if this is possible or not.
You can try one of following:
Blackberry - Loading/Wait screen with animation
loading-class-for-blackberry
BB Splash Screen
You would have to create an app that would run a loading screen while it installed the final target app, AFAIK

Resources