Error with the Mobile Accessibility plugin
try in v4 ionic declare var window: any; and getTextZoomCallback(textZoom) { // is my function callback console.log('Current text zoom = ’ + textZoom + ‘%’) } call in init...
View ArticleNeed help with native plugin mobile accessability
try in v4 ionic declare var window: any; and getTextZoomCallback(textZoom) { // is my function callback console.log('Current text zoom = ’ + textZoom + ‘%’) } call in init...
View ArticleUnderstanding how routes and components work in Ionic (component re created...
you dont need to do router replace if you are just trying to change the component from A, B, and C. vue is reactive so when you change a reactive variable, it will re-render the vue. <template>...
View Articleİonic app window origin not working!
I use window.origin getting image (ex:src=window.origin+‘bs/ex/image.png’). But ı deployed ionic app for android and download apk and ı cant seeing images but I can see browser. what should I do? How...
View ArticleFirebase App Check for Ionic apps
yup working nicely - you just need to follow the documentation and add the recaptcha stuff which actually does not even disrupt your UI (not visible)...
View ArticleRedux state change not displayed
thx so far (y) i just can share some files here not the complete app: this ist my state.jsx: https://paste.ofcode.org/m5nFqekaiyM4gxf2qnKTA7 here the “wounds” are listed with {wounds.map( (wound: any)...
View ArticleIon Router - state lost
thx @ptmkenny (y) i now use <Link … so the screen isn´t left and the state is keep thx for feedback
View ArticleError running capacitor on MacBook Pro with M1 chip
I got this error every time I try to build my Ionic app for iOS devices through capacitor. On my M1 Mac I’ve downloaded CocoaPods throught Homebrew and it works correctly executing pod command in the...
View ArticleHow can I do SSR in a hybird ionic app?(partial)
I’m a backend architect, but know very little about frontend. I’m wondering if it’s possible to server side-rendering certain pages in a hybrid app? (some pages that only contain code that is fully...
View ArticleError running capacitor on MacBook Pro with M1 chip
pzsette: DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at it’s not capacitor error, its your node version. you may need to downgrade...
View ArticleUnderstanding how routes and components work in Ionic (component re created...
Thanks for taking the time to reply Aaron! I know that’s an option, but I would like to keep track of the component I’m using, so that if the user refreshes the page, it lands in the same component....
View ArticleUnderstanding how routes and components work in Ionic (component re created...
This is a good summary of how Ionic handles Page Lifecycles - Vue Lifecycle | Ionic Documentation.
View ArticleWhat are the changes between Ionic 5 and Ionic 6 that increase the minimum...
Bump. What are non-backwards-compatible changes?
View ArticleWhite screen after splash screen in Ionic 6 production build and 'Error: JIT...
When I try to build the app in release mode: $ ionic capacitor build android --prod The Android project is produced fine and I can create an .apk/deploy to a device or emulator. The app shows a splash...
View ArticleUnderstanding how routes and components work in Ionic (component re created...
Hey twestrick, thanks for replying. I had read that, but it wasn’t 100% clear to me. I’m guessing the relevant part is where it says When an app is wrapped in <ion-router-outlet> , Ionic...
View ArticleUnderstanding how routes and components work in Ionic (component re created...
So, v-if will remove the component from the DOM which is a Vue thing, not an Ionic thing. If you want the component to stick around, you need to use v-show. v-show will add your three components to...
View ArticleAndroid Plugin Project doesn't have any intellisense in Android Studio
I’m not an Android developer, so I have almost zero experience with Android Studio, so please bear with me. I’m trying to make a simple plugin that returns Android data to my Capacitor app, literally...
View ArticleUnderstanding how routes and components work in Ionic (component re created...
are you building a mobile app or a website? because if you are building a website… why are you starting with Ionic Framework? If you are building a mobile app, the user cannot refresh the page. I...
View Article