From e3216da03e65fde0663e8d704863ce9d65bfff46 Mon Sep 17 00:00:00 2001 From: Daniel Fliegauf Date: Thu, 31 Aug 2017 20:00:23 +0200 Subject: [PATCH] docs(config): add statusbarPadding to config (#12168) Add parameter for hiding extra padding when statusbar is hidden. --- src/config/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/config.ts b/src/config/config.ts index 5adcfaf511..ceaef49433 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -118,6 +118,7 @@ import { isArray, isDefined, isFunction, isObject } from '../util/util'; * | `popoverEnter` | `string` | The name of the transition to use while a popover is presented. | * | `popoverLeave` | `string` | The name of the transition to use while a popover is dismissed. | * | `spinner` | `string` | The default spinner to use when a name is not defined. | + * | `statusbarPadding` | `boolean` | Whether to hide extra padding for statusbar. | * | `swipeBackEnabled` | `boolean` | Whether native iOS swipe to go back functionality is enabled. | * | `tabsHighlight` | `boolean` | Whether to show a highlight line under the tab when it is selected. | * | `tabsLayout` | `string` | The layout to use for all tabs. Available options: `"icon-top"`, `"icon-start"`, `"icon-end"`, `"icon-bottom"`, `"icon-hide"`, `"title-hide"`. |