{"id":24755244,"url":"https://github.com/katzer/cordova-plugin-hidden-statusbar-overlay","last_synced_at":"2025-06-12T04:40:10.834Z","repository":{"id":13687277,"uuid":"16381071","full_name":"katzer/cordova-plugin-hidden-statusbar-overlay","owner":"katzer","description":"Cordova plugin to hide the statusbar and overlay on iOS","archived":false,"fork":false,"pushed_at":"2017-09-07T07:53:16.000Z","size":12612,"stargazers_count":27,"open_issues_count":0,"forks_count":14,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-08-09T22:38:16.153Z","etag":null,"topics":["cordova-ios-plugin","cordova-plugin","overlay","statusbar"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/katzer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-30T15:23:42.000Z","updated_at":"2022-04-07T20:36:16.000Z","dependencies_parsed_at":"2022-09-26T19:40:09.780Z","dependency_job_id":null,"html_url":"https://github.com/katzer/cordova-plugin-hidden-statusbar-overlay","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/katzer%2Fcordova-plugin-hidden-statusbar-overlay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/katzer%2Fcordova-plugin-hidden-statusbar-overlay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/katzer%2Fcordova-plugin-hidden-statusbar-overlay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/katzer%2Fcordova-plugin-hidden-statusbar-overlay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/katzer","download_url":"https://codeload.github.com/katzer/cordova-plugin-hidden-statusbar-overlay/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236018644,"owners_count":19082129,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cordova-ios-plugin","cordova-plugin","overlay","statusbar"],"created_at":"2025-01-28T12:37:53.606Z","updated_at":"2025-01-28T12:37:54.351Z","avatar_url":"https://github.com/katzer.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"left\"\u003e\u003cb\u003e\u003ca href=\"https://github.com/katzer/cordova-plugin-hidden-statusbar-overlay/tree/example\"\u003eSAMPLE APP\u003c/a\u003e :point_right:\u003c/b\u003e\u003c/p\u003e\n\n# HiddenStatusbarOverlay Plugin [![npm version](https://badge.fury.io/js/cordova-plugin-hidden-statusbar-overlay.svg)](http://badge.fury.io/js/cordova-plugin-hidden-statusbar-overlay) \n\nBeginning with iOS 7 view controllers are displayed full screen, by default, as shown [here][ios_guide]. This means they will cover the entire screen including the area underneath the status bar.\n\n## Supported Platforms\n\n- __iOS__\n\n\n## Installation\n\nThe plugin can be installed via [CLI][CLI] and is publicly available on [NPM][npm].\n\nExecute from the projects root folder:\n\n    $ cordova plugin add cordova-plugin-hidden-statusbar-overlay\n\nOr install a specific version:\n\n    $ cordova plugin add cordova-plugin-hidden-statusbar-overlay@VERSION\n\nOr install the latest head version:\n\n    $ cordova plugin add https://github.com/katzer/cordova-plugin-hidden-statusbar-overlay.git\n\nOr install from local source:\n\n    $ cordova plugin add cordova-plugin-hidden-statusbar-overlay --searchpath \u003cpath\u003e\n\nOr add the following line to the `config.xml` for Phonegap Build projects:\n\n```xml\n\u003cplugin name=\"cordova-plugin-hidden-statusbar-overlay\" spec=\"https://github.com/katzer/cordova-plugin-hidden-statusbar-overlay\" /\u003e\n```\n\n\n## Usage\n\nThe plugin creates the object `cordova.plugins.statusbarOverlay` and is accessible after the *deviceready* event has been fired.\n\n```js\ndocument.addEventListener('deviceready', function () {\n    // cordova.plugins.statusbarOverlay is now available\n}, false);\n```\n\nStatusbar and the overlay will be hidden on app start. The visibility of the status bar can be changed manually.\n\nTo hide the status bar:\n\n```javascript\ncordova.plugins.statusbarOverlay.hide();\n```\n\nTo show the status bar:\n\n```javascript\ncordova.plugins.statusbarOverlay.show();\n```\n\nTo determine if the status bar is hidden:\n\n```javascript\ncordova.plugins.statusbarOverlay.isHidden(function (isHidden) {\n    console.log('status bar is hidden? -\u003e ', isHidden)\n});\n```\n\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n\n## License\n\nThis software is released under the [Apache 2.0 License][apache2_license].\n\nMade with :yum: from Leipzig\n\n© 2013 [appPlant GmbH][appplant]\n\n\n[cordova]: https://cordova.apache.org\n[ios_guide]: https://developer.apple.com/library/ios/qa/qa1797/_index.html\n[CLI]: http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface\n[npm]: https://www.npmjs.com/package/cordova-plugin-hidden-statusbar-overlay\n[apache2_license]: http://opensource.org/licenses/Apache-2.0\n[appplant]: http://appplant.de\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkatzer%2Fcordova-plugin-hidden-statusbar-overlay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkatzer%2Fcordova-plugin-hidden-statusbar-overlay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkatzer%2Fcordova-plugin-hidden-statusbar-overlay/lists"}