Skip to content

Commit

Permalink
Update README for show and hide
Browse files Browse the repository at this point in the history
  • Loading branch information
cjpearson committed Jul 9, 2015
1 parent 9bfeee3 commit c86bf5a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ This plugin supports the __HideKeyboardFormAccessoryBar__ (boolean) and __Keyboa
- [Keyboard.shrinkView](#keyboardshrinkview)
- [Keyboard.hideFormAccessoryBar](#keyboardhideformaccessorybar)
- [Keyboard.disableScrollingInShrinkView](#keyboarddisablescrollinginshrinkview)
- [Keyboard.hide](#keyboardhide)
- [Keyboard.show](#keyboardshow)
- [Properties](#properties)
- [Keyboard.isVisible](#keyboardisvisible)
- [Keyboard.automaticScrollToTopOnHiding](#keyboardautomaticscrolltotoponhiding)
Expand Down Expand Up @@ -84,6 +86,44 @@ Set to true to disable scrolling when the WebView is shrunk.

Keyboard.disableScrollingInShrinkView(true);
Keyboard.disableScrollingInShrinkView(false);

## Keyboard.hide

Hide the keyboard

Keyboard.hide();

#### Description

Call this method to hide the keyboard

#### Supported Platforms

- iOS
- Android

#### Quick Example

Keyboard.hide();

## Keyboard.show

Show the keyboard

Keyboard.show();

#### Description

Call this method to show the keyboard.


#### Supported Platforms

- Android

#### Quick Example

Keyboard.show();

# Properties

Expand Down

0 comments on commit c86bf5a

Please sign in to comment.