All Questions
Tagged with ionic-framework angular
12,207 questions
0
votes
0
answers
27
views
Ionic detached elements held by a KeyframeEffect
I have a page inside an Ionic Angular app which looks something like this:
@Component({
selector: 'app-pages',
templateUrl: './pages.component.html',
styleUrls: ['./pages.component.scss'],
...
0
votes
0
answers
14
views
Ionic + Cordova app not sending JSESSIONID cookie
I'm working on a legacy app at the company I work for. This app is built with Ionic + Cordova + Angular. Thing is that the app isn't sending the JSESSIONID sent by one of the backend services we're ...
1
vote
0
answers
54
views
Angular: ERROR TypeError: Cannot read properties of null (reading 'writeValue') when using standalone component with ControlValueAccessor
I'm implementing a standalone component in Angular that wraps the gmpx-place-autocomplete web component from Google Maps Platform and implements the ControlValueAccessor interface to use it within a ...
1
vote
1
answer
36
views
Ionic-Angular lifecycle vs Angular signals
I'm following an old guide about building mobile apps using ionic with angular. In there it's explained that because of ionic page caching I might have some side effects when it comes to state ...
0
votes
0
answers
45
views
ESLint Not Working with Ionic and Capacitor (Android/iOS) - JavaScript Heap Out of Memory
I’m working on an Ionic Angular project with Capacitor, and I’m facing an issue where ESLint is not working properly. When I run eslint on my project, it fails with the following error:
FATAL ERROR: ...
0
votes
1
answer
58
views
How to open my android app on tapping a file?
I want to enable my ionic angular app to appear as an option when users tap on .gpx files on an android device.
To do it, I edited my AndroidManifest.xml, but couldn't make it work. Now, my manifest ...
0
votes
0
answers
31
views
Populating cascading drop list in Angular/Ionic with previously selected choices
Let's say I have a bunch of locations listed by city name. The locations have elements like country, state, and name. If the user clicks the "add" button, they are presented with a modal to ...
1
vote
1
answer
45
views
UntypedFormControl's valid property always returning false
I am working on a ionic cordova-angular project and I have a screen with an input field defined like this in html file.
<div class="inputdiv">
<ion-label class="...
0
votes
0
answers
38
views
Ionic Cordova Camera plugin issue with Android 13
I am working on a ionic cordova project and I am trying to integrate a functionality to take images from either camera or pick from gallery in base64 and for this functionality I am using cordova ...
0
votes
1
answer
41
views
CORS (Cross-Origin Resource Sharing) issue in Ionic project [duplicate]
I was trying to download a PDF or an image from the backend and share it directly via WhatsApp. but is showing CORS issue how to fix this issue, can some help me to fix
async shareFiles() {
try {
...
0
votes
0
answers
39
views
How to get image data in blob format from Ionic Capacitor
I'm using Ionic/Capacitor (with Angular) to retrieve image data from Android Gallery. Using Capacitor.getPhoto to retrieve image data, but the data is in Base64. Ultimate goal is to send and save ...
0
votes
1
answer
40
views
How to change component property value, with a variable from 'code behind' with getter in component?
I made a diceComponent, where I can fill the number in the HTML file, then in the component it will fill a url to an img with the right kind of dots.
When I fill the number in the html file it works ...
0
votes
1
answer
29
views
Infinite-scroll broken when resetting the item list
I have an ionic angular application which uses an infinite scroll. When resetting the initial data to fetch updates, or to the fetch a change in language and to retrieve data in another language, the ...
0
votes
0
answers
46
views
How To Get Currently Shown Calendar Month/Year in Ionic 8 (angular) using ion-datetime
Using the <ion-datetime> component, when you use the forward/back arrows to traverse between months of a calendar, it does not trigger an ionChange() event. Instead it triggers an ionFocus() ...
0
votes
1
answer
35
views
ionic 8 custom component does not render
I created a custom component that has a .ts look like below:
@Component({
selector: 'app-top-recommendations',
templateUrl: './top-recommendations.component.html',
styleUrls: ['./top-...