Quantcast
Channel: Ionic Forum - Latest topics
Viewing all 71528 articles
Browse latest View live

Header with no border with ionic-react

$
0
0

@victorcarvalhosp wrote:

Hi team,

I want to have a header without the border, using ionic with Angular I can easily achieve that using:

<ion-header no-border>

But how do I achieve the same result using ionic-react?

Yours,
Victor

Posts: 1

Participants: 1

Read full topic


Onesignal Notification not fire when tablet sleep

$
0
0

@thegiffary wrote:

Hello,

I’m, using Onesignal Notification plugin on my Ionic app to receive notification.

I found one issue that when I turn off tablet screen for a while, the tablet cannot receive notification from Onesignal but when I open the app and try to send it again, the notification is shown…

Anyone got this issue and know how to fix it, please tell me.

Regards.

Posts: 1

Participants: 1

Read full topic

How to open a pdf containg URL in InAppBrowser in ionic 3

How to implement Adobe analytics in ionic app?

$
0
0

@cooldp007 wrote:

Hello,

Anyone knows implementation of Adobe analytics in ionic app?

Please let me know if anyone knows

Posts: 1

Participants: 1

Read full topic

How to keep google login session alive till user manually logout in ionic4

$
0
0

@bhavin9965 wrote:

I created ionic4 application in which i am trying to backup user data in user’s google drive.
for that i implemented google login with google drive scope. but accessToken gets expired after some time.
Application don’t have any backend services. so i want to schedule drive backup in my app for that i need to keep google login token alive.
Can we do that using cordova google plus plugin ?
Can someone please add example of how to keep google session alive ?

Posts: 1

Participants: 1

Read full topic

Error building com.google.android.gms:play-services-basement

$
0
0

@Kyrax80 wrote:

I am having the following error when building for Android. I tried all the things online I’ve seen but no success yet:

* What went wrong:
Failed to capture fingerprint of input files for task ':app:preDebugBuild' property 'compileManifests' during up-to-date check.
> The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.

Any idea on how to solve this?

Thanks!

Posts: 1

Participants: 1

Read full topic

What Plugin Work in PWAs?

$
0
0

@hyperlinked wrote:

How can we tell which plugins are compatible for use in a PWA? I’m asking because I’m trying get a PWA Ionic App working that uses the Document Viewer PDF Viewer plugin, but I can’t get it to work in Safari on an iPhone. I’m not sure if I’m doing something wrong when I compile or if it simply isn’t supposed to work when used from a browser even when it’s a mobile device.

The Document Viewer plugin lists its compatibility as: Android, iOS, and Windows. Does it need to list “Browser” as a supported platform for it work in a PWA?

Posts: 1

Participants: 1

Read full topic

SafariViewController Curent URL

$
0
0

@NurGuz wrote:

Hi guys,

i’m using SafariViewController instead of InAppBrowser. And I need the current url, how can I take it?

Regards

Posts: 1

Participants: 1

Read full topic


Install APK

$
0
0

@cece22 wrote:

Help.
I have installed apk the result of an ionic build
in the application, we can search for data from MySQL.
the case is,
when the apk is installed on Xiaomi, data from mysql can appear,
well when I install it on a Samsung cellphone, the data doesn’t appear,
what’s that? Has anyone experienced it like that?
even though the HP settings Install unknown apps are on

Posts: 1

Participants: 1

Read full topic

Hidden input field in ionic v4

$
0
0

@PathumLakshan wrote:

I have following use case,
There are two types of users are using the app, for that they have to sign up first with google auth.
For example Driver and passenger, so they both need to identify uniquely with extra parameter with google auth.
I thought hidden data field will do it, but how can i do that with Ionic, i couldn’t found a way. Or is there any other way to do that ?

Thanks in advance.

Posts: 1

Participants: 1

Read full topic

Is it possible to debug an apk with Chrome DevTool?

$
0
0

@ioclaudio wrote:

Hi,
I know ho to debug an Ionic app using the command "ionic cordova run android" and Chrome DevTool.

The question is, is it possible to debug a deployed app (apk) in a similar way?

I have a problem, on my app, that appears only after generating the apk non running it with “ionic cordova run android”.

How can I debug this app?

thank you very much

cld

Posts: 2

Participants: 2

Read full topic

Can't click buttons after changing tab [Angular 8]

$
0
0

@joaquinjsb wrote:

Hi,
I’ve just upgraded to Angular 8 and Ionic angular to 4.7.1, ionic-cli latest version, I have a problem with tabs, when I click the tab I can’t click the ion-items / ion-buttons, my ion-fab seems to work, any ideas on what can it be?

here is the html code

<ion-content>
    <!-- fab placed to the bottom and start and on the bottom edge of the content overlapping footer with a list to the right -->
    <ion-fab horizontal="end" slot="fixed" vertical="bottom">
        <ion-fab-button>
            <ion-icon name="settings"></ion-icon>
        </ion-fab-button>
        <ion-fab-list side="top">
            <ion-fab-button (click)="addNew()">
                <ion-icon name="add"></ion-icon>
            </ion-fab-button>
            <ion-label>Execute Job</ion-label>
        </ion-fab-list>
    </ion-fab>

    <form #form="ngForm" (submit)="search()">
        <ion-grid>
            <ion-row>
                <ion-col align-self-center sizeLg="4" sizeMd="4" sizeXs="12">
                    <div text-center>
                        <h3>Search</h3>
                    </div>
                    <div padding>
                        <ion-item>
                            <ion-label>Start Date</ion-label>
                            <ion-datetime [(ngModel)]="entitySearch.startDate" name="startDate"
                                          displayFormat="DD/MM/YYYY H:mm" min="2019"></ion-datetime>
                        </ion-item>
                        <ion-item>
                            <ion-label>End Date</ion-label>
                            <ion-datetime [(ngModel)]="entitySearch.endDate" name="endDate"
                                          displayFormat="DD/MM/YYYY H:mm" min="2019"></ion-datetime>
                        </ion-item>
                        <ion-item>
                            <ion-label>Schedule</ion-label>
                            <ion-select [(ngModel)]="entitySearch.schedule" name="schedule"
                                        placeholder="Select One">
                                <ion-select-option *ngFor="let schedule of (scheduleList | async)"
                                                   [value]="schedule">{{schedule.name}}</ion-select-option>
                            </ion-select>
                        </ion-item>
                    </div>
                    <div padding>
                        <ion-button [disabled]="form.invalid" expand="block" size="large" type="submit">Search
                        </ion-button>
                    </div>
                </ion-col>
            </ion-row>
        </ion-grid>
    </form>

    <ion-item>
        <ion-label>Filter by status</ion-label>
        <ion-select (ionChange)="filterSearch()" [(ngModel)]="entitySearch.active">
            <ion-select-option value="-1">All</ion-select-option>
            <ion-select-option value="1">Activated</ion-select-option>
            <ion-select-option value="0">Deactivated</ion-select-option>
        </ion-select>
    </ion-item>

    <ion-list>
        <ion-list-header>
            <ion-label color="medium" text-wrap>
                <h3>Executions</h3>
            </ion-label>
        </ion-list-header>

        <ion-item (click)="onClickDetails(execution)" *ngFor="let execution of (results | async)" button>

            <ion-label text-wrap>
                <h3>({{execution.job.name}}) {{ execution.schedule.name }}</h3>
                {{execution.info}}
            </ion-label>

            <ion-badge [color]="(execution.active == 1) ? 'success' : 'danger'" slot="end">
                {{(execution.active == 1) ? 'Active' : 'Deactivated'}}
            </ion-badge>
        </ion-item>

    </ion-list>
    <ion-row>
        <ion-tabs>
            <ion-tab-bar slot="bottom">
                <ion-tab-button [routerLink]="['/schedule/' + scheduleId]">
                    <ion-icon name="calendar"></ion-icon>
                    <ion-label>Schedule</ion-label>
                </ion-tab-button>
                <ion-tab-button>
                    <ion-icon name="play"></ion-icon>
                    <ion-label>Executions</ion-label>
                </ion-tab-button>
            </ion-tab-bar>
        </ion-tabs>
    </ion-row>
</ion-content>

the other page is quite the same, just changed the tab button

Posts: 1

Participants: 1

Read full topic

Platform back button not working

Angular Universal

$
0
0

@sandhya94 wrote:

Hi,

My home page got executed but i am getting errors in console and my routes are not working.

Here is the output from console.
Uncaught SyntaxError: Unexpected token <
polyfills.765b09fb75d947f18728.bundle.js:1 Uncaught SyntaxError: Unexpected token <
main.9c9f8c29248007852752.bundle.js:1 Uncaught SyntaxError: Unexpected token <

I referred this link for Angular universal.
https://medium.com/platformer-blog/enabling-server-side-rendering-on-an-existing-angular-application-with-angular-universal-5fdf7549b928.

Please suggest.

Posts: 1

Participants: 1

Read full topic

Tutorial for Ionic Studio & Appflow?

$
0
0

@applacadabra wrote:

Is there any place I can view a step by step tutorial of using Ionic Studio and Appflow to create and generate a test executable using the system?

Posts: 1

Participants: 1

Read full topic


Plugin "angular2-signaturepad" not work in ionic 4

$
0
0

@jesupatham wrote:

The plugin “angular2-signaturepad” was properly worked in Ionic 3. But, these plugin i can’t implement in ionic 4. i need help , how to implement this plugin ?

Posts: 1

Participants: 1

Read full topic

Integration of Google instead of Google plus

$
0
0

@vishal1992 wrote:

Integration of Google instead of Google plus in ionic4.
As we know Google+ is shutdown.

Any help will be appreciated.

Posts: 1

Participants: 1

Read full topic

Ionic 4 build error

Copy and Pay setup

$
0
0

@Tshepang01 wrote:

Good day. I am struggling with setting up a paygate with copy and pay integration. The url that the paygate has provided doesn’t work. Please assist

Posts: 1

Participants: 1

Read full topic

Image-picker use native file system like camera

$
0
0

@NichoBridge wrote:

Does anyone know what i need to change in the image-picker plugin to have it open the native file system for picking images like the camera plugin does? Or if there’s something i’m missing on the camera plugin to let me choose multiple pictures yet.

Posts: 1

Participants: 1

Read full topic

Viewing all 71528 articles
Browse latest View live


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