I will try to dig on capacitor code, thanks
QRCode scanner for Cordova under Angular 12
QRCode scanner for Cordova under Angular 12
Apologies, I cant find the code anymore and I am not behind my pc
Maybe try How to Build a PWA QR Code Scanner with Ionic for iOS & Android | Devdactic - Ionic Tutorials?
QRCode scanner for Cordova under Angular 12
I remember again - I took the js code from the cordova plugin as published on ionic site
Here another example ula-holder-workshop/scan-qr.page.ts at 39bad758893537850becb9f83b8e8f55115951b0 · Tommertom/ula-holder-workshop · GitHub
(Not my code)
Finding the IP address of a device (with name or MAC adress)
Hello PepeMax,
I have the same problem. Have you found a solution?
Error Build camera capacitor v3
How to test apps Live Location Movement Update on map without Moving with Mock Location Setup
@ajithandro
Run your ionic app on iphone simulator then at Top Menu → Features-> Locations- City Run
You have live coordinates updates.
Content wont get rendered if behind footer
@b5518388 try to share some of the code so anyone of us be able to help you and check what is goes on.
Thanks!
How to version or unregister a Service worker with Ionic React TS?
Hey guys,
I use the React tabs app as my template so everything for the Service Worker is presetup, I wanted to know how can I manage versions with the service worker? I frequently update my Web App but the users rarely get the updates as the cache on the SWs is loading not my new code?
Accessibility Support
Hello Team,
How we can assign custom values to accessibility label properties to our Ionic Components.
Irrespective of context as per HTML tags VoiceOver is reading trait values, how can we customize traits also.
Please suggest any Plugins available or any packages which Ionic supports to satisfy accessibility(apart from @ionic-native/mobile-accessibility).
@ionic-native/mobile-accessibility: is checking accessibility and posting the announcements as per the documentation.
How we can assign accessibility properties?
Thank you
Reactjs Video capture from Camera
hi community, i am using Reactjs and Capacitor to develop Android and iOS versions. as part of the app i need to implement a “20 second medium/low quality video clip capture” screen using the device camera.
-
i use Capacitor camera plugin to capture photos, but the API does not show much about Videos! does it support?
-
if the Capacitor camera does not support, what is the recommended way or mix of technology or npm modules i should try? any links how-tos are greatly appreciated.
thanks
Accessibility Support
Reactjs Video capture from Camera
State Manager for Ionic5 with Capacitor
There are several and also depends on your situation. If using Ionic/Angular you can use NGRX, NGSX or RxJs.
State Manager for Ionic5 with Capacitor
Yes I’m using Ionic/Angular/Capacitor
IonPage: useEffect with history.listen
I’m was trying to determine the best to listen for route changes to do certain actions based on the route. I actually ended for using hook useLocation
in my use case.
Building Custom UI with Capacitor
Please describe whether we can build custom UI in native(Android/iOS) and combine it with capacitor plugin. The references mentions only about accessing non UI functionalities with capacitor
Migrating Alert from Ionic 3 to Ionic 4
Hi,
I’m trying to migrating a very old Ionic 3 project. I’m still new to Ionic, java and js. This is my original Ionic 3 code using AlertController with a button:
borrarDB()
{
this.BTSerial.isConnected().then(() => {
let alert = this.alertCtrl.create({
message: 'Error',
subHeader: 'Bluetooth conectado ',
buttons: ['OK']
});
alert.present();
}, () => {
let alert = this.alertCtrl.create({
message: "Confirmar",
subHeader: 'Esta seguro?',
buttons: [
{
text: 'No',
handler: () => {
console.log('No clicked');
}
},
{
text: 'Si',
handler: () => {
console.log('Si clicked');
this.Save.set ("EqList", "");
this.Save.clear();
this.Save.set ("EqAlias", "");
this.Save.clear();
console.log ("Base de datos borrada");
}
}
]
});
alert.present();
});
I have changed title for message from Ionic 3 to subtitle for subHeader but my problem is with alert.present()
Reading Ionic 4 API there is a new async/await usage for AlertController but not sure how to use with my original code.
Any help or guidance would be appreciated. Thanks.
Common.js:267 Native: tried calling OneSignal.getIds, but the OneSignal plugin is not installed
i am still having the same issue here!
Network Request Error Only When Running on Actual Phone
I am having a really weird issue where I can make API calls from the PWA and from the iOS simulator.
But when I run the app on my actual iPhone the API call fails with a “Network Error”. But I have no idea what is causing this issue.
Has anyone experienced this? I’ve killed A LOT of time on this and its starting to drive me a bit crazy!
Thank you for any tips or help,
–harris
Network Request Error Only When Running on Actual Phone
First question is whether you’re using https
endpoints everywhere. If not, try that and see if the problem persists.