Remove grey space on upper keyboard (React Native - iOS) - react-native

There is grey space on my react native application for iOS platform, like the image below :
How to remove grey space on upper keyboard (React Native - iOS) ? Is it possible ?

I have solved the problem by using this :
[[IQKeyboardManager sharedManager] setEnableAutoToolbar:NO];

Related

In a React Native application, how can I dynamically change the background color of the background behind the views?

I'm building an iOS app using react native. Using react-navigation, I open a screen using the 'modal' option. This is a common behavior for iOS applications to open a screen in a modal which animates the screen on top of the current screen, but also moves both screens down so there is a gap at the top and it reveals a black background behind the two screens. For my app, I'd like to dynamically change the color of this background to say a red, green or blue while the app is running. How do I do this in react native using react native or react-navigation apis?

Negative scrollView in React Native android

Is there a way we can scroll negative for the value contentOffset in React native android It work on IOS but not android

How to remove this bottom keyboard section for emoji and mic buttons in react native

Does anyone know how to remove this bottom section of the keyboard on react-native iOS? Maybe a secret keyboardType prop on a TextInput or something?
Thanks!

React Native Navigation titleImage

I am using react native navigation and I have titleImage set.That image scales correctly on my iOS 6Plus but I have a friend who has the same phone but does not scale correctly. The image tries to come below the line of the title and cover up some of the components below.Does anyone have the same issue?
Thanks

Text Justify in react native

How can we justify text in react native for both android and iOS without using webView, since webView is not visible in android after placing it inside another view.
The following option only works for iOS.
textAlign='justify'
https://facebook.github.io/react-native/docs/text.html#style
As it s written here, justify for android is not available... Most of the tricks suggest to use left or then a webview as you said...
Using webView resolved the issue. To show webView inside the ScrollView I just had to add height to webView.
https://github.com/jsdf/react-native-htmlview/issues/7