Ahmed El-Atab
Ahmed El-Atab
@ihadeed Thanks for this awesome plugin! Have you implemented the **RTL** feature or not yet?! I'm using this plugin in developing ionic 4 app, but the solution of @abdellahx have...
Follow this approach to overcome the bug in the StatusBar plugin: ``` statusBar.overlaysWebView(false); statusBar.overlaysWebView(true); setTimeout(() => { statusBar.overlaysWebView(false); statusBar.overlaysWebView(true); }, 80); ``` Reverse the logic to prevent the status bar...
You can access the phone object properties and methods by the reference of the component (this.$refs) but not directly! You have to do something like this: this.$refs.phone.**phoneObject**.isValid. The plugin APIs...