You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-__StatusBarStyle__ (status bar style, defaults to lightcontent). Set the status bar style (e.g. text color). Available options: `default`, `lightcontent`. `blacktranslucent` and `blackopaque` are also available, but __deprecated__, will be removed in next major release, use `lightcontent` instead.
58
+
-__StatusBarStyle__ (status bar style, defaults to lightcontent). Set the status bar style (e.g. text color). Available options: `default`, `lightcontent` and `darkcontent`. `blacktranslucent` and `blackopaque` are also available, but __deprecated__, will be removed in next major release, use `lightcontent` instead.
@@ -95,6 +98,11 @@ exports.defineManualTests = function (contentEl, createActionButton) {
95
98
StatusBar.styleDefault();
96
99
}
97
100
101
+
functiondoColor4(){
102
+
log('set style=darkcontent');
103
+
StatusBar.styleDarkContent();
104
+
}
105
+
98
106
varshowOverlay=true;
99
107
functiondoOverlay(){
100
108
showOverlay=!showOverlay;
@@ -114,6 +122,8 @@ exports.defineManualTests = function (contentEl, createActionButton) {
114
122
'</p> <div id="action-color2"></div>'+
115
123
'Expected result: Status bar text will be a light (white) color'+
116
124
'</p> <div id="action-color3"></div>'+
125
+
'Expected result: Status bar text will be a dark (black) color<br>for iOS - a device theme depending (black or white) color'+
126
+
'</p> <div id="action-color4"></div>'+
117
127
'Expected result: Status bar text will be a dark (black) color'+
118
128
'</p> <div id="action-overlays"></div>'+
119
129
'Expected result:<br>Overlay true = status bar will lay on top of web view content<br>Overlay false = status bar will be separate from web view and will not cover content'+
@@ -169,11 +179,19 @@ exports.defineManualTests = function (contentEl, createActionButton) {
0 commit comments