This weekend i created same project twice, with Cordova & Capacitor. I got same border effect on buttons. So it’s not about Webview/WKWebview difference. Probably just CSS.
Ios13 and ionic 4 all html elements have black border
Identity Federation with ionic 3
Hi
I am currently implementing an sso authentication based on the identity federation and saml2.
I would like from an url [realm] and a metadata [metadata] to be able to connect to my ionic application
Can somebody help me?
Thanks!
Ios13 and ionic 4 all html elements have black border
Does setting outline:none;
on elements with border make any difference?
Long delay accessing iOS contacts with ionic 4
Hello everybody!
I have an app which allows the user to send an e-mail to one or more of his contacts. It was first distributed with ionic 3 and this functionality used to work without issues. Then I released the ionic 4-based version for android, and again everything was well. However, when I released the ionic 4 based version for iOS, users complained that it takes forever to load their contacts. I tested this with a colleague’s iPhone (iOS 13.3) and indeed, it takes around 40 seconds to load the contacts (around 900 contacts). I have inserted debugging code and saw that the delay is in the call to Contacts.find() and the call to the .then() clause. During this time, the app seems to be frozen.
Has anyone else encountered this? Is there a solution/workaround available?
Thanks in advance,
Alf
ionic info
Ionic:
ionic (Ionic CLI) : 5.4.15
Ionic Framework : @ionic/angular 4.11.7
@angular-devkit/build-angular : 0.803.21
@angular-devkit/schematics : 8.1.3
@angular/cli : 8.1.3
@ionic/angular-toolkit : 2.0.0
Cordova:
cordova (Cordova CLI) : 9.0.0 (cordova-lib@9.0.1)
Cordova Platforms : ios 5.0.1
Cordova Plugins : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.2, (and 9 other plugins)
System:
ios-sim : 8.0.2
NodeJS : v13.1.0
npm : 6.12.1
OS : macOS Catalina
Xcode : Xcode 11.2.1 build version 118500
Long delay accessing iOS contacts with ionic 4
$ ionic cordova plugin ls
cordova plugin ls
cordova-plugin-app-version 0.1.9 “AppVersion”
cordova-plugin-contacts 3.0.1 “Contacts”
cordova-plugin-device 2.0.2 “Device”
cordova-plugin-inappbrowser 3.1.0 “InAppBrowser”
cordova-plugin-ionic-keyboard 2.2.0 “cordova-plugin-ionic-keyboard”
cordova-plugin-ionic-webview 4.1.2 “cordova-plugin-ionic-webview”
cordova-plugin-network-information 2.0.2 “Network Information”
cordova-plugin-splashscreen 5.0.2 “Splashscreen”
cordova-plugin-statusbar 2.4.2 “StatusBar”
cordova-plugin-whitelist 1.3.3 “Whitelist”
cordova-sqlite-storage 3.4.0 “Cordova sqlite storage plugin - cordova-sqlite-storage plugin version”
Bar code scanner plugin
Bar code scanner plugin scans one code at a time.
I need to develop continuously scan until close the scanner.how can i develop please help me
How can i update my ionic 3 app to ionic4?
Yeah it is rough for some apps I agree. In my case my side project was quite big and I did a lot of html templating (extended Ionic components with my custom css a lot). This was probably the major big thing.
But still the migration was worth it in my case and knowing all the stories from people experiencing a lot of pain I just made sure I did a lot of prep work before actual migration.
Captured my experience in this article a while ago.
Create a Barcode/QR Code Scanner Application with Ionic 2
How we can scan continuously until close the scanner
Ionic in web. Hide browser address bar
I Asked on GitHub and they told me they are searching for a workaround, as they did 4 months ago. I think they dont want to fix it but for me is a huge problem
Appflow Deploy plugin is already installed
Same here, did you find a solution?
How do you handle version and build numbers?
EDIT: I’m updating this link as I changed my githubname: https://gist.github.com/raschidjfr/636aac1841fdc2dbc2407cfc9d57df4c
PathLocationStrategy with DeepLinker
This app-scripts http-server.ts edit works for me in combination with <base href="/" />
.
I put in a PR for @ionic/app-scripts 3.2.5:
Cordova Camera Plugin + Image Cropping Help
I need a way to keep image height and width the same for all images whether added by camera or photo library. While adding a image from the photo library, the image height gets cropped to the native image height instead of keeping the background when saved. I need to keep the black background, so all of the images are uploaded at same height.
const options: CameraOptions = {
quality: 100,
sourceType,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
targetHeight: 200,
targetWidth: 200,
allowEdit: true
};
I have allowEdit set to true, and height and width set to 200.
As you can see the first images height is smaller than the second image.
Is it really possible to create food delivery driver app like uber with ionic
Loader Service for Ionic 4
Hi,
it worked like that for me
...
async save(){
const loading = await this.loadingController.create({
message: 'Please wait...'
});
await loading.present();
... /* code */
loading.dismiss();
}
Ionic 4: json_decode() is not working
Push to a page onclick on google maps infowindow
same problem here. any solution please??
I need navigate to a page when click event is fired.
Push to a page onclick on google maps infowindow
I would suggest starting a new thread with your code. This thread is full of stuff that shouldn’t have ever been emulated, and especially not today.
Cordova Camera Plugin + Image Cropping Help
If you don’t get any better answers, the HTML <canvas>
element basically gives you an image manipulation suite for free.
Ionic select not select the already selected option
My initial reaction is “asking the select component to do something it wasn’t designed to do”. Since it’s intended for choosing something from a list, there wouldn’t be much point in firing a change event without a change.
I would suggest simply making your own component using <ion-list>
and <ion-item>
and opening it in a popover, leaving <ion-select>
totally out of the picture.