Swipe down to check notification is hiding status bar in Android in ionic1

Hi All,

I am new to Ionic 1 and having one issue with status bar on android.

I have StatusBar plugin installed in my app and able to show the status bar on Android by using below code:

$ionicPlatform.ready(function () {
var isAndroid = ionic.Platform.isAndroid();
if(isAndroid){
StatusBar.show();
}
}

having the same show call on app resume as well and app is showing status bar always on android app.
But the issue, i am having is, if i swipe down from app to check the notification and then swipe up, status bar is not visible anymore.

can someone tell me which event will be triggered for this activity so that i can handle that and make the status bar visible all the time.

Thanks,
Ankur