Skip to content

Commit 4381794

Browse files
committed
chore: update Readme.md
1 parent 94de908 commit 4381794

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ React Native library for enhanced external keyboard support.
1111
1212

1313
## New Release Features
14+
- Added `Keyboard.dismiss` functionality for Android.
1415
- Introduced an iOS-specific component: `KeyboardFocusGroup`, a component for managing the `tintColor`, `focusGroupIdentifier`, and group focus.
1516
- Enhanced `KeyboardExtendedBaseView` with `haloCornerRadius`, `haloExpandX`, and `haloExpandY` properties for customizing the appearance of the `Halo Effect`.
1617
- 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,20 @@ onFocus?: | Handler called when the component is focused  | `() => void`
249250
onBlur?: | Handler called when the component loses focus | `() => void`
250251
groupIdentifier?: | Relates to iOS `focusGroupIdentifier`: the identifier of the focus group to which this view belongs| `string`
251252

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 need for hiding the soft keybord using hardware keyboard.
265+
266+
252267

253268
# Migration 0.3.x to 0.4.0
254269

0 commit comments

Comments
 (0)