Quantcast
Channel: Ionic Forum - Latest posts
Viewing all 228527 articles
Browse latest View live

Link between AOL and IONIC

$
0
0

Is this possible that we can link both these apps for sending mails? Or if we had a link then we will face AOL mail on android not working for a certain period/lifetime. If this will be possible then I don’t have to purchase another client to provide this facility and the part of AOL is that it has the capacity of over 250 GB. So is there any way that I can attach both of these.


App developer can promote their App: AOL

$
0
0

AOL is the best email marketing App by which a user can work from its mobile. But AOL has only one drawback and that is sometimes AOL mail on android not working while on the way. So here are some tips by which you won’t have to upset and you will get the access of the App and those are:

  1. Check the internet connection whether it is at its regular speed.
  2. Clear the cache files and cookies.
  3. Update both the App and the operating system.
  4. Change the IMAP in the AOL setting.

Ticks don't appear in ion-range

$
0
0

I’m trying to implement some functions that use ion-range as input. The functions are okay, my problem is related to the aesthetic issue of the ion-range element. Although there is this option to implement ticks in the documentation, when I insert it in my code nothing happens, the ion-range elements keep the same.

When I looked the code provided for the example using ticks, I saw that it don’t even use the option.

How can I obtain the ticks in the range element?

What I’m doing:

<ion-range min="1" max="2" step="0.20" value="1" snaps="true" ticks="true">
	<ion-icon size="small" slot="start" name="timer"></ion-icon>
	<ion-icon slot="end" name="timer"></ion-icon>
</ion-range>

Making Sending a URL to my ionic app with web intent to work without crashing

$
0
0
window.plugins.webintent.getExtra(window.plugins.webintent.EXTRA_STREAM,
    function(url) {
        // url is the value of EXTRA_STREAM
    }, function() {
        // There was no extra supplied.
    }
);

I am using the above code in Ionic 4,I didn’t get any errors,but it showing null in success function

Ionic 3: Can't implement Custom URL Scheme

$
0
0

Hi! I am trying to invoke my application using a custom URL Scheme. Try several ways to make it work through different plugins such as:

https://github.com/EddyVerbruggen/Custom-URL-scheme or https://github.com/ionic-team/ionic-plugin-deeplinks

It works on Android correctly when calling the application through the Scheme URL, but on iOS I have many obstacles and the application does not open in any way. I have configured the Scheme URL in the config.xml to be able to open it. It is frustrating to find no solution. Anyone could implement this functionality?

Thank you

Ionic Face Tracking

https://github.com/Initsogar/cordova-webintent is 404

$
0
0
window.plugins.webintent.getExtra(window.plugins.webintent.EXTRA_STREAM,
    function(url) {
        // url is the value of EXTRA_STREAM
    }, function() {
        // There was no extra supplied.
    }
);

I am using the above code in Ionic 4,In gallery,I am trying to share any image to my ionic app it is receiving null in success function.can any one please respond,is it correct or not

Sharing photo/photos to my application from "share" button in gallery images

$
0
0
window.plugins.webintent.getExtra(window.plugins.webintent.EXTRA_STREAM,
    function(url) {
        // url is the value of EXTRA_STREAM
    }, function() {
        // There was no extra supplied.
    }
);
I am using the above code to receive file from gallery through share to my ionic app,but it is getting null.
Can any one please help me

Updating list upon ionic storage set() completion

$
0
0

I will explore the BehaviorSubject. Thanks for your response.

lol, I like development opinions, I try to have as many of my own as possible. I am interested in the idea of removing a class in favor of an interface. I’ll have to read up a bit. That’s usually how these things end… More research for me to do :confused:

plugins.intentShim.registerBroadcastReceiver

$
0
0

A variable cannot be assigned outside of the scope of (window).plugins.intentShim.registerBroadcastReceiver.

Ionic 4 loading interceptor can't dismiss loading

$
0
0

Hello,

Try this.

If you want to display the loader when the ionicons or the local files are called delete the first condition.

// app.modules.ts
providers: [
	...
	{provide: HTTP_INTERCEPTORS, useClass: LoaderInterceptor, multi: true}
]
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
	if (req.url.indexOf('http') !== 0) {
		return next.handle(req);
	}

	return from(this.loadingController.create())
		.pipe(
			tap((loading) => {
				return loading.present();
			}),
			switchMap((loading) => {
				return next.handle(req).pipe(
					finalize(() => {
						loading.dismiss();
					})
				);
			})
		);
}

Explain how images cache work in Ionic 4

$
0
0

Where did you read, that Ionic explicit has a caching mechanism for <ion-img>'s?

There is no word about caching in the documentation of the tag.

Also you can check at any time the source code on GitHub, there is no mechanic implemented, “just” the IntersectionObserver to load images when visible.

Hope it clarifies.

Cheers
Unkn0wn0x

Ionic 4 loading interceptor can't dismiss loading

$
0
0

Don’t forget the LoadingController

constructor(private loadingController: LoadingController) {
}

Ionic 4 loading interceptor can't dismiss loading

$
0
0

Okay. I will try this approach. The problem is handling multiple http request because of async behaviour of loading control

Problema, cuando se muestra el teclado me desplaza el contenido de la maqueta

$
0
0

Tengo un problema, cuando ejecuto mi aplicacion ionic al haceer click en un input el teclado al salir me desplaza la maqueta, lo cual hace que se dañe la interfaz de usuario y no se visualice bien, ¿alguna solucion? ¿a alguien mas le ha pasado?


Ion-nav duplicando os icones

$
0
0

Sem título

Boa tarde ao abrir uma nova página com ion-nav os icones são duplicados.

Alguém já passou por isso?

Ionic problem

$
0
0

Hi guys. I have this problem when generating apk of my project. Does anyone know how to solve?

cordova-android-support-gradle-release: Android platform: V7+
Discovered saved plugin “mx.ferreyra.callnumber”. Adding it to the project
Plugin “call-number” already installed on android.
The “path” argument must be of type string. Received undefined

Ion-label removing ellipsis on code

$
0
0

Hi,
I would like to know 2 things:
How to stretch my line to fill the entire line, because it’s going only to the middle of it.
And remove ellipsis(…) and show the entire text.

image

Here is my code:

<ion-row>
          <ion-col size="3">
            <img src="../assets/whatsapp.png" class="whatsapp-contato1"/>
          </ion-col>
          <ion-col size="9">
            <ion-label position="stacked">Contato 1*</ion-label>
          </ion-col>
        </ion-row>

Ionic 4: Remove weekends from ion-datetime

$
0
0

Hi,

I’m looking for a way to remove/disabled weekend dates from ion-datetime component.

I could use dayValues property but for that, I need to know which month is currently selected, in order to change dayValues property value dynamically.

For instance, think about the behavior already implemented when you select 31 as date and then you change the month to February. You will notice the values: (29), 30, 31 for ‘date’ column will get removed. That’s exactly I’m trying to get with weekends. There is a way to listen that month-change event?

Problema, cuando se muestra el teclado me desplaza el contenido de la maqueta

Viewing all 228527 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>