Questions tagged [ionic7]
39 questions
0
votes
0 answers
Create an ionic project with a specific starting version number
This should be simple, but I cannot seem to find it... I'm hoping someone here will know the answer...
When creating a new Ionic project using ionic start from the command line, you can specify pretty much everything -- the name of your app, the…

Laurence MacNeill
- 718
- 7
- 20
0
votes
1 answer
How do I stop the ionic 7 error Argument of type '() => void' is not assignable to parameter of type 'number'.ts(2345) with setTimeout
I have set an ionic 7 page with
setTimeout(() => { }, 500);
() => { } is underlined
I receive an error Argument of type '() => void' is not assignable to parameter of type 'number'.ts(2345)
I think this is coming from spec.ts file as any pages…

Thomas Degroot
- 441
- 1
- 12
- 32
0
votes
1 answer
Migration ionic 5 to ionic 7: Where is @ionic-native/screenshot/ngx?
I am migrating a ionic5 project to ionic 7. I am missing the library @ionic-native/screenshot/ngx
Do you know where I can find the plugin? Thanks a lot.
I searched in https://ionicframework.com/docs/native but it seems that there is no screenshot…

jedaUx
- 1
- 1
-1
votes
0 answers
Error occurs in the template of component
I am working on updating a project to Ionic 7 and Angular 15, I've tried all of the solutions for this problem I could find online. Angular 15 apparently doesn't really need NgModule anymore with the new standalone modules, but it also shouldn't…

Eber Louback
- 1
- 1
-1
votes
1 answer
how to set up SQLite database using capacitor for ionic application with angular?
I am using the Ionic framework with Angular and Capacitor to build a chat application. I want to implement storage in my application. I am trying to set up an SQLite database for my Capacitor project. The purpose of using SQLite is so that I can…

Mahima
- 9
- 2
-1
votes
2 answers
How to change the color of a label of an ion-input in ionic 7
I have upgraded my project to Ionic 7 and now ion-inputs don't need an ion-label. I have changed it but I don't know how to assign the color they had.
Before:
enter image description here
enter image description here
After:
enter image description…