You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added `Keyboard.dismiss` functionality for Android.
14
15
- Introduced an iOS-specific component: `KeyboardFocusGroup`, a component for managing the `tintColor`, `focusGroupIdentifier`, and group focus.
15
16
- Enhanced `KeyboardExtendedBaseView` with `haloCornerRadius`, `haloExpandX`, and `haloExpandY` properties for customizing the appearance of the `Halo Effect`.
16
17
- Enhanced `KeyboardExtendedBaseView` with `onBubbledContextMenuPress`, key press functionality has been also enhanced. Key presses can be listened to for a group of components, screens, or pages.
@@ -249,6 +250,18 @@ onFocus?: | Handler called when the component is focused | `() => void`
249
250
onBlur?: | Handler called when the component loses focus | `() => void`
250
251
groupIdentifier?: | Relates to iOS `focusGroupIdentifier`: the identifier of the focus group to which this view belongs| `string`
251
252
253
+
### Keyboard
254
+
Keyboard module to support soft keyboard dismissal.
255
+
256
+
```tsx
257
+
import {Keyboard} from 'react-native-external-keyboard';
258
+
259
+
...
260
+
Keyboard.dismiss();
261
+
...
262
+
```
263
+
264
+
This is needed for hiding the soft keyboard using a hardware keyboard. Additionally, the soft keyboard can be hidden from the settings or by pressing `Alt + K`.
0 commit comments