New release features, a year overview
I'm thrilled to announce the latest release, version 1.10.0
, of react-native-keyboard-controller
! Packed with new functionalities and improvements, this update aims to enhance your React Native development experience.
Key featuresโ
useFocusedInputHandler
hookโ
Introducing the useFocusedInputHandler
hook! This powerful addition empowers developers to manage focused input with unparalleled ease. The hook comes with a straightforward signature:
useFocusedInputHandler(
{
onChangeText: ({ text }) => {
"worklet";
// Your custom logic here
},
},
[],
);
Whenever you are building your own avoiding solution or tracking user activity this hook can be a perfect fit for your needs!
Exporting KeyboardAwareScrollView
โ
I've heard your feedback, and in response, I'm now exporting KeyboardAwareScrollView
from the library core. This widely-used component provides an enhanced ScrollView
experience, ensuring smoother navigation and improved user interactions. Now, you can effortlessly integrate it into your projects and leverage its capabilities for a more polished UI ๐
KeyboardController.dismiss()
methodโ
Simplify your workflow with the addition of the KeyboardController.dismiss()
method. This method streamlines the dismissal of the keyboard, making it a breeze to manage user input interactions. Enhance the user experience by effortlessly controlling when and how the keyboard should disappear.