Postal_code in Ionic Framework?
Hi, @arunaraj Add ionic Native Geocoder plugin in your app for get postal_code, ionic cordova plugin add cordova-plugin-nativegeocoder npm install --save @ionic-native/native-geocoder Now, add this...
View ArticleHow to display image(taking with camera) on canvas (signature pad)
<img src= photo *ngIf="photo"/> what is that? src is a PATH & name to an image file. see this example https://devdactic.com/complete-image-guide-ionic/ u have to write the image to some...
View ArticleHow do I make http.get requests sequential?
jelliform: this.http.get(‘RequestA’).success{ this.http.get(‘RequestB’).success{ // use RequestA and RequestB response data when both are fully loaded } } try this...
View ArticlePlaying Sequentially audio files (Ionic 3 Native Audio)
It’s a bug with the plugin The problem is on the callback wich execute at the same time when playing audio file.
View ArticleGoogle maps TypeScript error: Cannot find name 'google' - discussion
In case this helps anyone, with @itaionic we discover that the fix is: Install google-maps lib: npm install google-maps --save then in your Typescript file add: import { google } from "google-maps";...
View ArticleCallback when file is done playing not working!
The Proble is with the plugin see this post
View ArticleIssue, while minimizing and restoring, the app is reloaded like it's the...
For example: I am using the app normally using navedando for several pages, suddenly I need to go back to the desktop to open another app, so far so good, however when I decide to return to my app it...
View ArticleIssue, while minimizing and restoring, the app is reloaded like it's the...
the question was, HOW did you get back to the desktop? press the BACK button til u got to desktop (the app will be ended) press the home button to get back to the desktop (the app should still be...
View ArticleHow to configure deeplinks in AppModule.forRoot()?
Hi, I really dont know how can it work for you, but for me its totally broken, maybe could you help me find a way to use deeplinks in right way please? I have starter tabs template in ionic 3, this is...
View ArticleEnable View Cache for Ionic
Hi, any news on this feature? I need it too, is very boring lose the page state everytime the user change page.
View ArticleIonic Pro doesn't add /www directory?
this.platform.ready().then((readySource) => { this.log('Platform ready from: '+ readySource); this.nativeAudio.preloadComplex('key1', 'assets/audio/filename.wav', 1, 1, 0).then( (success) => {...
View ArticleIssue, while minimizing and restoring, the app is reloaded like it's the...
I pressed the button to go straight back to the desktop. If you are filling out a form and go straight back to the workspace all the fill-in is lost because the app is fully reloaded
View ArticleRunning ionic app on ios device API error
Hi, While trying to run my app on my iphone 7 i see i get the following error in xcode: 2018-03-01 15:17:42.748572+0200 StorSenseMobile[8770:959523] API error: <_UIKBCompatInputView:...
View ArticleIonic proxy not working
Hi Guys, I’m new with Ionic Framework. I just want to connect my external api and listing the item. When I connect with my external API loaded from local machine it is working. But when I try to...
View ArticleHide ion-input validation border
The HTML template: <ion-textarea class="no-validation-line"> ... </ion-textarea> the SCSS: .no-validation-line .item-inner { box-shadow: none !important; }
View ArticleFile plugin - No provider for File!
Put the provider in the @component declaration: @Component({ selector: 'xxx', templateUrl: 'xxx', providers: [File] })
View ArticleWhy I'm having this error in ionic 3- " Typescript Error Cannot find module...
ionic error.png1889x753 40.7 KB ionic error.png1920x1080 248 KB
View ArticleLoad JS files before anything else (jQuery and other JS libraries)
Hello everyone, After struggling to make the QR Scan native plugin work on a pure browser (not Android or iOS app), apparently even if the the plarform “browser” is mentionned as compatible, it...
View Article