Skip to main content

Keyboard

Keyboard module to control keyboard events.

Usage​

The Keyboard module allows you to listen for native events and react to them, as well as make changes to the keyboard, like dismissing it.


Reference

Methods​

addListener()​

tsx
staticaddListener:(
eventType:KeyboardEventName,
listener:KeyboardEventListener,
)=>EmitterSubscription;

The addListener function connects a JavaScript function to an identified native keyboard notification event.

This function then returns the reference to the listener.

Parameters:

NameTypeDescription
eventName
Required
stringThe string that identifies the event you're listening for. See the list below.
callback
Required
functionThe function to be called when the event fires

eventName

This can be any of the following:

  • keyboardWillShow
  • keyboardDidShow
  • keyboardWillHide
  • keyboardDidHide
  • keyboardWillChangeFrame
  • keyboardDidChangeFrame
note

Only keyboardDidShow and keyboardDidHide events are available on Android. The events will not be fired when using Android 10 or below if your activity has android:windowSoftInputMode set to adjustResize or adjustNothing.


dismiss()​

tsx
staticdismiss();

Dismisses the active keyboard and removes focus.


scheduleLayoutAnimation​

tsx
staticscheduleLayoutAnimation(event:KeyboardEvent);

Useful for syncing TextInput (or other keyboard accessory view) size of position changes with keyboard movements.


isVisible()​

tsx
staticisVisible():boolean;

Whether the keyboard is last known to be visible.


metrics()​

tsx
staticmetrics():KeyboardMetrics|undefined;

Return the metrics of the soft-keyboard if visible.

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /