KeyboardStickyView
A KeyboardStickyView
component seamlessly ensures that a designated view sticks to the keyboard's movements, maintaining visibility and interaction. Use it when you want to enhance the user experience by preventing important UI elements from being obscured by the keyboard, creating a smooth and user-friendly interface in your React Native application.
KeyboardAvoidingView
vs KeyboardStickyView
Unlike KeyboardAvoidingView the KeyboardStickyView
just moves the content along with keyboard and not resizing the inner view. Try to compare animations of KeyboardStickyView
and KeyboardAvoidingView
to see a difference in details on how it works and which component is suitable for your needs.
KeyboardStickyView - only footer is moving (container is not resized) | KeyboardAvoidingView - entire container is getting resized |
Example​
const offset = { closed: 0, opened: 20 };
const StickyFooter = () => {
return (
<KeyboardStickyView offset={offset}>
<Footer />
</KeyboardStickyView>
);
};
Props​
offset​
An object containing next properties:
- closed - additional offset to the view when keyboard is closed. Default value is
0
. - opened - additional offset to the view when keyboard is opened. Default value is
0
.