Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ Hide the statusbar.

StatusBar.hide();

On iOS, you can pass 2 optional parameters, animated and duration, in order to animate hiding the statusbar. By default, the animated parameter is set to false.


Supported Platforms
-------------------
Expand All @@ -266,13 +268,22 @@ Supported Platforms
- Windows Phone 8
- Windows Phone 8.1

Quick Example
-------------

StatusBar.hide();
StatusBar.hide(true); // => default duration value is 0.1s
StatusBar.hide(true, 0.3);

StatusBar.show
=================

Shows the statusbar.

StatusBar.show();

On iOS, you can pass 2 optional parameters, animated and duration in seconds, in order to animate showing the statusbar. By default, the animated parameter is set to false.


Supported Platforms
-------------------
Expand All @@ -283,6 +294,13 @@ Supported Platforms
- Windows Phone 8
- Windows Phone 8.1

Quick Example
-------------

StatusBar.show();
StatusBar.show(true); // => default duration value is 0.1s
StatusBar.show(true, 0.3);


StatusBar.isVisible
=================
Expand Down
Loading