"Type 'HealthOriginal' is not a constructor function type." when extending...
Yes, that is a solution, though I lose the handy connection I would’ve liked to have with the base class, in terms of auto-complete and the likes. But yes, it is possible, if there’s no other way
View ArticleAre there any significant differences between using lazy loading modules or...
Admittedly I haven’t studied this extensively for a while now, but when I did, lazy loading made performance worse for me, because components that were needed in more than one page got duplicated in...
View ArticleGeolocation plugin issue
Sorry it was my mistake not to also include the devDependencies. For the sake of completeness, this is the entire code of package.json: { “name”: “IonicProject”, “version”: “0.0.1”, “author”: “Ionic...
View ArticleUsing Ionic serve an older Ionic 3 app
if you have been building ionic 5 apps how do you use and ionic serve an older Ionic 3 app? And maybe npm install for older git clone projects?
View ArticleManipulable tab to hide it from angular ts
Greetings I want to be able to control what tabs I can see whenever I want, an example “tab1Root” I can hide and leave the other tabs visible if they could help me <ion-nav #mycontent...
View ArticleGeolocation plugin issue
mirkobalzarini: I also noticed the version difference related to @angular/animations , but it is probably due to the version of the Angular Cli installed on the computer. I don’t think that’s...
View ArticleManipulable tab to hide it from angular ts
Who is “I” in your thread title? The app author or the user?
View ArticleHow to "evaluate" a retrieved from json?
I want to display a pdf with ng2-pdfjs-viewer`. When I hard code in my homepage.html something like : <ng2-pdfjs-viewert pdfSrc="myfile.pdf"><ng2-pdfjs-viewert> It’s ok, but when the same...
View ArticleAuth Persistence using Ionic/Vue and Firebase
@aaronksaunders That worked perfect, thank you sir. Now how do I persist other stuff in the state? Would love to be able to “offline” some things or just have them cached as long as the user is logged...
View ArticleGeolocation plugin issue
That’s a project started about a couple of months ago, and then restarted about a couple of weeks ago copying the whole app folder. it’s my first “real” project developed with Ionic Framework, so I...
View ArticleGeolocation plugin issue
mirkobalzarini: what do you think is the best solution, start again with a new project? If possible, yes, emphatically. Every time there is a major version upgrade involving either Ionic or Angular,...
View ArticleHow to speed up loading of images
I’ve a wooCommerce store and am making an application for the same with ionic 5. When I load the products page, API call is made to Wordpress REST API and images are loaded slowly slowly, while I’ve...
View ArticleHow to "evaluate" a retrieved from json?
It’s very hard for Angular to be able to know the trust level of stuff that comes “from a json”. Combining the security concerns with the performance issues involved when templates are not known at...
View ArticleCan't get Sqlite plugin to work in my app
today I tried to download the sample project, and it worked, then, it stopped working, I’m sorry that I have no experience, if I can understand something I’ll write it …
View ArticleHow to speed up loading of images
Nats97: What should I do First thing I would do is hook up Chrome’s Developer Tools and open the Network tab. That should give you hints to narrow down where in the loading process is really bogging...
View ArticleRunning npx cap open android is displaying the "blank" ionic app
Did you restart the app from Android Studio?
View Articleionic SyntaxError: Unexpected number in JSON at position 4
how can i find and send to you?
View ArticlescrollTo method for ion-tabs
How do you set scroll position for the ion-content generated by <ion-tabs>? i.e. <ion-tabs> <div class="tabs-inner"> <---- generated from ion-tabs component template...
View ArticleArray of Array
I have a function for add data and I can add data but when I try to put this array in ion-card with *ngFor like: <ion-card *ngFor="let x of tudo; let i = index"> <ion-card-header>...
View ArticleArray of Array
As the error is telling you, tudo isn’t an array. It’s an object. I think your data is inside out. tudo = { divisao: [], figura: [], tempo: [], quantidade: [] } That’s a single object consisting of...
View Article