Closed farmer00317558 closed 2 months ago
Hi, can you share screenshots with and without KeyboardAvoidingView
?
with and not setNavigationColor('transparent'):
without KeyboardAvoidingView
:
I made changes for this issue, you can find it in the latest version.
Hi @kadiraydinli, seems like this issue is still present in version 2.6.1
(only on Android)
Any tips to make it work? I am using height
as the behavior of the KeyboardAvoidingView
RN version: 0.71.8
Hey @kadiraydinli, any updates on this?
Hey @ale-mazz, can you explain this issue in more detail with screenshots and sample code?
@kadiraydinli Sure! (Sorry for the delay)
If I use SystemNavigationBar.setNavigationColor('transparent', undefined, 'navigation')
, the result obtained is this one
If I use SystemNavigationBar.setNavigationColor('white', undefined, 'navigation')
, the result is this one. Note, I am using the standard KeyboardAvoidingView
provided by React Native
The correct behavior should be as in the second video, that is, the keyboard should push up the purple button. I want to specify that I am using this method only on Android, since on iOS I do not have to change the color of the navigation bar.
I cannot give you parts of the code I am using (company policy) but to sum up, I am using a SafeAreaView
, inside it I am using a KeyboardAvoidingView
, inside it a Scrollview
and at the same level of the Scrollview
a Pressable
I tried looking at your library but honestly could not solve the problem. I hope you can help me. Thank you!
Hey @ale-mazz, thank you for the explanation. I am working on it. I'll let you know when there's an improvement. 👍🏼
Hi @ale-mazz, despite my research and attempts, I couldn't find a healthy solution. I believe this issue is partially rooted in Android. Unfortunately, I cannot provide a fix for this problem at the moment. If you have a solution for this issue, please don't hesitate to open a PR. Thanks you.
Thanks, @kadiraydinli, since I'm not that comfortable with Android native development, I found a solution using Expo's packages. Thanks anyway!
@ale-mazz what was your solution? Can you elaborate?
Hi @pekq, it's been a long time but if I remember correctly I used this library from Expo, it has all the useful features to interact with the navigation bar. I no longer have access to that repo with the code but I think I set the transparent color to the navigation bar in case the device used was Android.
@ale-mazz thanks! Unfortunately I see the same issue when using the Expo's package. That package requires to set two variables to achieve true transparency:
NavigationBar.setPositionAsync('absolute') // <=== Breaks keyboard avoidance
NavigationBar.setBackgroundColorAsync('transparent')
I'll keep searching.
Hi, I found an issue that when I use
KeyboardAvoidingView
after callsetNavigationColor('transparent')
,KeyboardAvoidingView
will not work.After some debugging, I found it is caused by:
I am not very familiar with Android development. Is there a way to keep the effect of
setNavigationColor('transparent')
, but also makeKeyboardAvoidingView
works properly?