diff --git a/releases/next/docs/statusbar.html b/releases/next/docs/statusbar.html index 04bd381e90e..ee8d8a433dc 100644 --- a/releases/next/docs/statusbar.html +++ b/releases/next/docs/statusbar.html @@ -18,7 +18,7 @@ mounted. One use case is to specify status bar styles per route using Navi API exposed as static functions on the component. It is however not recommended to use the static API and the component for the same prop because any value set by the static API will get overriden by the one set by the component in -the next render.

Constants #

currentHeight The height of the status bar.

Props #

animated bool #

If the transition between status bar property changes should be animated. +the next render.

Constants #

currentHeight (Android only) The height of the status bar.

Props #

animated bool #

If the transition between status bar property changes should be animated. Supported for backgroundColor, barStyle and hidden.

hidden bool #

If the status bar is hidden.

androidbackgroundColor color #

The background color of the status bar.

androidtranslucent bool #

If the status bar is translucent. When translucent is set to true, the app will draw under the status bar. This is useful when using a semi transparent status bar color.

iosbarStyle enum('default', 'light-content', 'dark-content') #

Sets the color of the status bar text.

iosnetworkActivityIndicatorVisible bool #

If the network activity indicator should be visible.

iosshowHideTransition enum('fade', 'slide') #

The transition effect when showing and hiding the status bar using the hidden @@ -441,10 +441,11 @@ const examples = render() { return ( <View> - <Text>Height: {StatusBar.currentHeight} pts</Text> + <Text>Height (Android only): {StatusBar.currentHeight} pts</Text> </View> ); }, + platform: 'android', }]; exports.examples = examples;