react-native-keyboard-aware-scroll-view icon indicating copy to clipboard operation
react-native-keyboard-aware-scroll-view copied to clipboard

Is this library still be maintained?

Open Yandamuri opened this issue 2 years ago • 16 comments

Can some one from maintainers confirm that this library is still maintained?

Yandamuri avatar Nov 15 '22 05:11 Yandamuri

@alvaromb @slorber ?

GwFreak01 avatar Dec 28 '22 07:12 GwFreak01

It doesn't look like that it is still maintained.

hraschan avatar Jan 16 '23 13:01 hraschan

I am not a maintainer of this library that I didn't use for the last 2 years.

Reach out to APSL, the owners of the library to know their plans. I have no direct contact with them.

slorber avatar Feb 03 '23 09:02 slorber

@slorber Thank you for your response.

May I know which package you are using alternative to the library?

Yandamuri avatar Feb 07 '23 04:02 Yandamuri

@hraschan @GwFreak01

This is the response I got from library maintainers,

We're looking for an active maintainer as we moved our mobile business unit to another company. We'll try to figure out what to do in the next month or so. One option is to provide some kind of funding, or move to Jazzband or similar.

Yandamuri avatar Feb 08 '23 04:02 Yandamuri

@slorber Thank you for your response.

May I know which package you are using alternative to the library?

I am mostly working on web apps now (Docusaurus) so I don't really have any alternative to recommend sorry

slorber avatar Feb 24 '23 15:02 slorber

@slorber Thank you for your response. May I know which package you are using alternative to the library?

I am mostly working on web apps now (Docusaurus) so I don't really have any alternative to recommend sorry

Anyway Thank you for your response

Yandamuri avatar Feb 27 '23 05:02 Yandamuri

react-native has its own implementation by now:

https://reactnative.dev/docs/keyboardavoidingview

sajadghawami avatar Mar 02 '23 13:03 sajadghawami

I found this nice little gem about creating a wrapper component that just animates your view out of the way using the built in Animated API. So far this workaround has done beautifully for solving the issues I had with the built in KeyboardAvoidingView and the fact that this library is no longer maintained.

While it has a few kinks to be worked out since it still animates even when the keyboard isn't getting in the way if you wrap your entire view but definitely a better start in my opinion especially if it doesn't require any third party dependency.

Check it out here: https://brooklinmyers.medium.com/how-to-animate-react-native-inputs-to-avoid-covering-them-with-the-keyboard-8489fa884e6d.

Streudal avatar Mar 27 '23 15:03 Streudal

react-native has its own implementation by now:

https://reactnative.dev/docs/keyboardavoidingview

it's not working well, specially when you need a scrollview inside it

alainib avatar May 30 '23 11:05 alainib

@alainib May I know the exact issue you are facing?. ...I am thinking to use in my new project.

Yandamuri avatar May 31 '23 10:05 Yandamuri

@Yandamuri noticeable issues with KeyboardAvoidingView:

  • behaves differently on iOS and Android
  • covers part of the view

gavrilikhin-d avatar Sep 14 '23 23:09 gavrilikhin-d

Hi everyone

I didn't find any solution correctly fitting my product team requirements (this library was not working well, and nor was the react-native KeyboardAvoidingView which seems not meant to work with scrollviews).

So I had to develop a custom one, which I published if it can help some folks here : https://www.npmjs.com/package/@rlemasquerier/react-native-keyboard-scrollview?activeTab=readme

It is a way simpler solution so for sure it is far from perfect. Many usecases may be missing, so please feel free to tell me so I check what I can do or propose PR.

At least on my project, I tested it on some various iOS and android devices and it seems to work properly.

rlemasquerier avatar Sep 29 '23 08:09 rlemasquerier

Hi everyone

I didn't find any solution correctly fitting my product team requirements (this library was not working well, and nor was the react-native KeyboardAvoidingView which seems not meant to work with scrollviews).

So I had to develop a custom one, which I published if it can help some folks here : https://www.npmjs.com/package/@rlemasquerier/react-native-keyboard-scrollview?activeTab=readme

It is a way simpler solution so for sure it is far from perfect. Many usecases may be missing, so please feel free to tell me so I check what I can do or propose PR.

At least on my project, I tested it on some various iOS and android devices and it seems to work properly.

Any plans on making a KeyboardAvoidingFlatList aswell?

jduhking avatar Nov 25 '23 00:11 jduhking

I found this nice little gem about creating a wrapper component that just animates your view out of the way using the built in Animated API. So far this workaround has done beautifully for solving the issues I had with the built in KeyboardAvoidingView and the fact that this library is no longer maintained.

While it has a few kinks to be worked out since it still animates even when the keyboard isn't getting in the way if you wrap your entire view but definitely a better start in my opinion especially if it doesn't require any third party dependency.

Check it out here: https://brooklinmyers.medium.com/how-to-animate-react-native-inputs-to-avoid-covering-them-with-the-keyboard-8489fa884e6d.

Thank you for this implementation. But there is small flaw that field is pushed above even though it is not covered with keyboard. Is there any possibility to push the filed only if it is covered with keyboard?

Yandamuri avatar Nov 28 '23 04:11 Yandamuri

Hi everyone!

I didn't find any solution correctly fitting my product team requirements (this library was not working well, and nor was the react-native KeyboardAvoidingView which seems not meant to work with scrollviews).

So I had to develop a custom one, which I published if it can help some folks here : https://www.npmjs.com/package/@rlemasquerier/react-native-keyboard-scrollview?activeTab=readme

It is a way simpler solution so for sure it is far from perfect. Many usecases may be missing, so please feel free to tell me so I check what I can do or propose PR.

At least on my project, I tested it on some various iOS and android devices and it seems to work properly.

Sadly for my team, @rlemasquerier/react-native-keyboard-scrollview wasn't able cover all our requirement:c

So we created new library - @lad-tech/keyboard-aware:D

npm docs github

Feel free to use - we're planning maintain this library for long term :purple_heart:

Bibazavr avatar May 06 '24 06:05 Bibazavr