kshowStatusBar function
显示隐藏状态栏
Implementation
void kshowStatusBar(bool isShow) {
if (isShow) {
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
overlays: [SystemUiOverlay.top, SystemUiOverlay.bottom]);
} else {
//隐藏状态栏,保留底部按钮栏
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
overlays: [SystemUiOverlay.bottom]); //隐藏状态栏,保留底部按钮栏
}
}