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

Multiple projects with the same base

$
0
0

@Ragnarr wrote:

I’m developing an AngularJS/Ionic.v.1 App and my goal is doing an product. In detail, I want to create an core project and multiple child project that incorporate the core. Every child project can have different customizations (change color, change images and new features).

All this one is necessary because if I have an bug or global new feature I must fix or develop one time and not n.

On this project I’m using GIT so I could create an brach for every child project (clients) and my develop is the core but I’m not convinced that this is the best practice.

Is there a better way to do this?

Thank you in advance.

Posts: 1

Participants: 1

Read full topic


How to make Ionic's transitions faster and more responsive?

$
0
0

@1BJK903 wrote:

Hi there,

I am using $ionicConfigProvider.views.transition("platform"); to enable native transitions. The problem, however: they are so slow! So how can I put the delay to 200ms or so?

I actually have two problems.

  1. The transitions are slow and I want to make them faster, but I don’t know how.

How to solve that?

  1. The transitions need to load first, then content has to load and ONLY after everything is loaded, you can click on something.

How to solve that?

Posts: 1

Participants: 1

Read full topic

Can not get form value from html

$
0
0

@thetalkingtree wrote:

I tried to use a form to validate my inputs, I got it working for my signup page but in edit profile page I just can’t get the form value from HTML page. I can’t figure out why since the same code worked on another page.

  <form [formGroup] = "editProfileForm" novalidate>
    <ion-item>
      <ion-input type="text" placeholder = "First Name"   fromControlName = "firstName"></ion-input>
      <ion-input type="text" placeholder = "Last name" fromControlName = "lastName"></ion-input>
      <ion-icon name="person" item-start></ion-icon>
    </ion-item>
    <ion-col>
      <button ion-button class="update-button" (click)="update(editProfileForm.value)" >Save</button>
    </ion-col>
  </form>
constructor(
    private AFcurUser: AngularFireAuth,
    private AFdatabase: AngularFireDatabase,
    public loadingCtrl: LoadingController,
    public alertCtrl: AlertController,
    public app: App,
    public navCtrl: NavController,
    public firebaseModule : FirebaseProvider,
    public formBuilder : FormBuilder)
  {

    this.editProfileForm = formBuilder.group({
      email : ['',Validators.required],
      lastName : ['',Validators.required],
      firstName :  ['',Validators.required],
      phone : ['',Validators.required,],
      Introduction : ['',Validators.required,],
      travelRadius : ['',Validators.required,],
    });
}

  update = function()
  {
       console.log(this.editProfileForm.value);   //this display the pre configure value in constructor always.
}

Posts: 2

Participants: 2

Read full topic

Adding Google reCAPTCHA to Ionic v2 App

$
0
0

@Thedjmixman wrote:

We are using ionic but when we install google reCAPTCHA we can’t get it working. We have followed various guides but are now looking for someone who can successfully demonstrate an ionic app that works on iOS and Android and successfully integrates google reCAPTCHA (without the use of hacks such as iframes or modified reCAPTCHA JS).

If this is something you have done or think you can do, please let me know. We would need it within 3 days and will be happy to pay someone $500 to provide us with the following:

  1. We would want the ionic project code including an example of using the component.
  2. We need the g-recaptcha-response value accessible to our standard login form, so that we can XHR this value to our server for processing along with the other form inputs.
  3. As we will be processing it server-side, only the public key will be exposed in the app.
  4. It needs to run and compile on android and iOS with a number of other packages installed:
{
  "name": "MyApp",
  "version": "0.0.1",
  "author": "Ionic Framework",
  "homepage": "http://ionicframework.com/",
  "private": true,
  "scripts": {
    "clean": "ionic-app-scripts clean",
    "build": "ionic-app-scripts build",
    "lint": "ionic-app-scripts lint",
    "ionic:build": "ionic-app-scripts build",
    "ionic:serve": "ionic-app-scripts serve"
  },
  "dependencies": {
    "@angular/animations": "4.4.3",
    "@angular/common": "4.4.3",
    "@angular/compiler": "4.4.3",
    "@angular/compiler-cli": "4.4.3",
    "@angular/core": "4.4.3",
    "@angular/forms": "4.4.3",
    "@angular/http": "4.4.3",
    "@angular/platform-browser": "4.4.3",
    "@angular/platform-browser-dynamic": "4.4.3",
    "@ionic-native/app-version": "^4.1.0",
    "@ionic-native/background-mode": "^4.3.2",
    "@ionic-native/barcode-scanner": "^4.3.2",
    "@ionic-native/clipboard": "^3.14.0",
    "@ionic-native/core": "3.12.1",
    "@ionic-native/device": "^4.3.2",
    "@ionic-native/facebook": "^4.3.2",
    "@ionic-native/fingerprint-aio": "^4.3.2",
    "@ionic-native/globalization": "^4.3.1",
    "@ionic-native/network": "^4.1.0",
    "@ionic-native/qr-scanner": "^4.3.2",
    "@ionic-native/splash-screen": "3.12.1",
    "@ionic-native/status-bar": "^3.12.1",
    "@ionic/storage": "2.0.1",
    "@ngx-translate/core": "^8.0.0",
    "@ngx-translate/http-loader": "^0.1.0",
    "angular-svg-icon": "^4.2.5",
    "benchmark": "^2.1.4",
    "cordova-android": "6.2.3",
    "cordova-browser": "^4.1.0",
    "cordova-ios": "^4.4.0",
    "cordova-plugin-add-swift-support": "^1.7.0",
    "cordova-plugin-app-version": "^0.1.9",
    "cordova-plugin-background-mode": "^0.7.2",
    "cordova-plugin-compat": "^1.0.0",
    "cordova-plugin-console": "^1.0.5",
    "cordova-plugin-device": "^1.1.6",
    "cordova-plugin-facebook4": "1.7.4",
    "cordova-plugin-fingerprint-aio": "^1.3.2",
    "cordova-plugin-globalization": "^1.0.7",
    "cordova-plugin-inappbrowser": "^1.7.1",
    "cordova-plugin-network-information": "^1.3.3",
    "cordova-plugin-splashscreen": "^4.0.3",
    "cordova-plugin-statusbar": "^2.2.2",
    "cordova-plugin-whitelist": "^1.3.1",
    "ionic-angular": "3.7.1",
    "ionic-plugin-deploy": "^0.6.7",
    "ionic-plugin-keyboard": "^2.2.1",
    "ionic2-pincode-input": "0.0.10",
    "ionicons": "3.0.0",
    "phonegap-plugin-barcodescanner": "6.0.8",
    "rxjs": "5.4.3",
    "sw-toolbox": "3.6.0",
    "zone.js": "0.8.18"
  },
  "devDependencies": {
    "@ionic/app-scripts": "3.0.0",
    "ionic": "3.17.0",
    "typescript": "2.3.4"
  },
  "description": "This is my awesome app",
  "cordova": {
    "plugins": {
      "cordova-plugin-console": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-whitelist": {},
      "ionic-plugin-keyboard": {},
      "cordova-plugin-inappbrowser": {},
      "ionic-plugin-deploy": {},
      "cordova-plugin-network-information": {},
      "cordova-plugin-app-version": {},
      "cordova-plugin-facebook4": {
        "APP_ID": "123456789123456",
        "APP_NAME": "MyApp"
      },
      "cordova-plugin-globalization": {},
      "cordova-plugin-fingerprint-aio": {},
      "phonegap-plugin-barcodescanner": {
        "CAMERA_USAGE_DESCRIPTION": "Used to scan QR Codes"
      },
      "cordova-plugin-device": {},
      "cordova-plugin-background-mode": {}
    },
    "platforms": [
      "android",
      "browser"
    ]
  }
}

Posts: 1

Participants: 1

Read full topic

Help when the app closes and reopens the whole component is run again

$
0
0

@appdigital wrote:

When I leave the application and re-enter I load again the whole page and the component and I want to know how to disable so that does not happen.

Posts: 1

Participants: 1

Read full topic

Help with InAppWebBrowser

$
0
0

@Bejsaif wrote:

Hello everyone,

I am using the InAppWebBrowser to open a website in full screen page.

The question is, can i call a javascript function (in the website which is opened in InAppWebBrowser) from the App or the opposite, calling ionic function from the website?

Exemple : How do i convert an alert javascript function (in the website) to a local notification ?

Thank you.

Posts: 1

Participants: 1

Read full topic

Having trouble running package build android

$
0
0

@darinwolyniec wrote:

ANDROID_HOME=/opt/android-sdk
JAVA_HOME=/usr/lib/jvm/java-8-oracle
:wrapper

BUILD SUCCESSFUL

Total time: 0.777 secs
Subproject Path: CordovaLib
The Task.leftShift(Closure) method has been deprecated and is scheduled to be removed in Gradle 5.0. Please use Task.doLast(Action) instead.
	at build_8czfjxvfzcz6bzrcl3bl9oz9y.run(/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/build.gradle:137)
The JavaCompile.setDependencyCacheDir() method has been deprecated and is scheduled to be removed in Gradle 4.0.
Incremental java compilation is an incubating feature.
The TaskInputs.source(Object) method has been deprecated and is scheduled to be removed in Gradle 4.0. Please use TaskInputs.file(Object).skipWhenEmpty() instead.
:preBuild UP-TO-DATE
:preDebugBuild UP-TO-DATE
:checkDebugManifest
:CordovaLib:preBuild UP-TO-DATE
:CordovaLib:preDebugBuild UP-TO-DATE
:CordovaLib:checkDebugManifest
:CordovaLib:prepareDebugDependencies
:CordovaLib:compileDebugAidl
:CordovaLib:compileDebugNdk UP-TO-DATE
:CordovaLib:compileLint
:CordovaLib:copyDebugLint UP-TO-DATE
:CordovaLib:mergeDebugShaders
:CordovaLib:compileDebugShaders
:CordovaLib:generateDebugAssets
:CordovaLib:mergeDebugAssets
:CordovaLib:mergeDebugProguardFiles
:CordovaLib:packageDebugRenderscript UP-TO-DATE
:CordovaLib:compileDebugRenderscript
:CordovaLib:generateDebugResValues
:CordovaLib:generateDebugResources
:CordovaLib:packageDebugResources
:CordovaLib:processDebugManifest
:CordovaLib:generateDebugBuildConfig
:CordovaLib:processDebugResources
:CordovaLib:generateDebugSources
:CordovaLib:incrementalDebugJavaCompilationSafeguard
:CordovaLib:compileDebugJavaWithJavac
:CordovaLib:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:CordovaLib:processDebugJavaRes UP-TO-DATE
:CordovaLib:transformResourcesWithMergeJavaResForDebug
:CordovaLib:transformClassesAndResourcesWithSyncLibJarsForDebug
:CordovaLib:mergeDebugJniLibFolders
:CordovaLib:transformNative_libsWithMergeJniLibsForDebug
:CordovaLib:transformNative_libsWithSyncJniLibsForDebug
:CordovaLib:bundleDebug
:prepareOrgApacheCordovaCordovaLib623DebugLibrary
:prepareDebugDependencies
:compileDebugAidl
:compileDebugRenderscript
:generateDebugBuildConfig
:generateDebugResValues
:generateDebugResources
:mergeDebugResources
:processDebugManifest
:processDebugResources
:generateDebugSources
:incrementalDebugJavaCompilationSafeguard
:compileDebugJavaWithJavac
:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:33: error: package org.apache.cordova.file does not exist
import org.apache.cordova.file.FileUtils;
                              ^
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:34: error: package org.apache.cordova.file does not exist
import org.apache.cordova.file.LocalFilesystemURL;
                              ^
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:453: error: cannot find symbol
        FileUtils filePlugin = (FileUtils) pm.getPlugin("File");
        ^
  symbol:   class FileUtils
  location: class Capture
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:453: error: cannot find symbol
        FileUtils filePlugin = (FileUtils) pm.getPlugin("File");
                                ^
  symbol:   class FileUtils
  location: class Capture
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:454: error: cannot find symbol
        LocalFilesystemURL url = filePlugin.filesystemURLforLocalPath(fp.getAbsolutePath());
        ^
  symbol:   class LocalFilesystemURL
  location: class Capture
Note: /home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/splashscreen/SplashScreen.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: /home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
5 errors
:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 2.037 secs
Error: /home/package/workspace/apps-54feeebf-11/cordova/platforms/android/gradlew: Command failed with exit code 1 Error output:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:33: error: package org.apache.cordova.file does not exist
import org.apache.cordova.file.FileUtils;
                              ^
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:34: error: package org.apache.cordova.file does not exist
import org.apache.cordova.file.LocalFilesystemURL;
                              ^
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:453: error: cannot find symbol
        FileUtils filePlugin = (FileUtils) pm.getPlugin("File");
        ^
  symbol:   class FileUtils
  location: class Capture
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:453: error: cannot find symbol
        FileUtils filePlugin = (FileUtils) pm.getPlugin("File");
                                ^
  symbol:   class FileUtils
  location: class Capture
/home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java:454: error: cannot find symbol
        LocalFilesystemURL url = filePlugin.filesystemURLforLocalPath(fp.getAbsolutePath());
        ^
  symbol:   class LocalFilesystemURL
  location: class Capture
Note: /home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/splashscreen/SplashScreen.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: /home/package/workspace/apps-54feeebf-11/cordova/platforms/android/src/org/apache/cordova/mediacapture/Capture.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
5 errors

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

Posts: 1

Participants: 1

Read full topic

Firebase + Ionic3 Error: disallowed_useragent

$
0
0

@jbaima wrote:

I just switched to the new Ionic View and right now today, my app in the old Ionic View works while the new Ionic View gives me this well known error:

403 Error - Thats an error. Error: disallowed_useragent his user-agent is not permitted to make an OAuth authorization request to Google as it is classified as an embedded user-agent (also known as a web-view). blah blah blah
In my code I inject the Firebase AuthProvider and use angularfire2 to connect and it looks like

private getProvider(from: string): AuthProvider {
switch (from) {
case ‘twitter’: return new firebase.auth.TwitterAuthProvider();
case ‘facebook’: return new firebase.auth.FacebookAuthProvider();
case ‘github’: return new firebase.auth.GithubAuthProvider();
case ‘google’: return new firebase.auth.GoogleAuthProvider();
}
}

signIn(from: string) {
this.afAuth.auth.signInWithPopup(this.getProvider(from))
. . .
Again, this works great in the browser or old Ionic but not the new Ionic View. I do have a fairly big library with general OAuth connections, but I thought that one of the great reasons to use Firebase is that we would no longer have to use those libraries and manage users ourselves.

Is there a way to do the Firebase auth on an iOS/Android app via Ionic?

Posts: 1

Participants: 1

Read full topic


Display a new list on top of an other at SearchBar event

$
0
0

@scatignaj wrote:

Hi everyone,

I have my homePage with a searchBar and a list where I display categories. I would my searchBar to search not on categories but on events and display a list on top of the first one with the result of what the user search.

Here is my code

public loadCategories(){
    this.categoryService.getCategory()
    .then(categoryFetched => {
      this.categories = categoryFetched;
      console.log(this.categories);
    })
  }

  public loadEvents(){
    this.eventService.getAllEvents()
    .then(eventFetched => {
      this.events = eventFetched;
      console.log(this.events);
      this.initializeItems();
    })
  }

  initializeItems() {
    this.searchItems = this.events;
  }

  filterItems(ev: any) {
    // Reset items back to all of the items
    this.initializeItems();

        // set val to the value of the searchbar
        let val = ev.target.value;

        // if the value is an empty string don't filter the items
        if (val && val.trim() != '') {
          this.searchItems = this.searchItems.filter((events) => {
            return (events.description.toLowerCase().indexOf(val.toLowerCase()) > -1)
          })
        }
  }

And HTML

<ion-content>
  <ion-searchbar class="searchBar" (ionInput)="filterItems($event)" placeholder="{{ 'SEARCH_PLACEHOLDER' | translate }}"></ion-searchbar>

  <ion-card class="ion-card-discover" ion-item *ngFor="let category of categories" (tap)="openCategory(category.id)">
    <img class="ion-img-discover" [src]="category.image"/>
    <div class="ion-title-discover">{{category.name}}</div>
  </ion-card>
</ion-content>

Thanks

Posts: 1

Participants: 1

Read full topic

Theming your Ionic 3 App

Class name for ?

How to use this.navCtrl.push in app.components.ts

$
0
0

@cpigusch wrote:

I’m trying to use this.navCtrl.push(somepage) on an icon in the flyout menu that is located in the ion-toolbar of app.html. I seem to be able to import the NavController too app.componets.ts but I cant add it to the constructor without it erroring. How in the world can I push from the app.componets.ts, it making me crazy please help

Posts: 1

Participants: 1

Read full topic

White round spot in ionic menu

$
0
0

@washfi06 wrote:

There are two spots in my ionic app(marked in blue circle).I can’t find the reason for it.
Could any one please help.

Below is my ionic info,

cli packages:

@ionic/cli-plugin-proxy : 1.4.13
@ionic/cli-utils : 1.13.1
ionic (Ionic CLI) : 3.13.1
global packages:

cordova (Cordova CLI) : 7.1.0
local packages:

@ionic/app-scripts : 3.0.0
Cordova Platforms : android 6.3.0
Ionic Framework : ionic-angular 3.7.1
System:

Android SDK Tools : 26.0.2
Node : v6.10.2
npm : 5.5.1

Posts: 1

Participants: 1

Read full topic

Convert scripts from website in-app browser to ionic functions

$
0
0

@Bejsaif wrote:

Hello everyone,

I am using the InAppWebBrowser to open a website in full screen page.

The question is, can i call a javascript function (in the website which is opened in InAppWebBrowser) from the App or the opposite, calling ionic function from the website?

Exemple : How do i convert an alert javascript function (in the website) to a local notification with ionic ?

Posts: 1

Participants: 1

Read full topic

Login/logout issue

$
0
0

@pradeepp12 wrote:

Hi,

Im facing an issue regarding with the ionic login/lout development.
After login button click ,setting the userdetails in localstorage (localstorage.setItem()) and route to dashboard.
In dashboard im checking if data present in the localstorage or not, then display the login/logout button

But this isnt working properly, data set in the localstorage is fine.
but when i reach dashboard its still ‘login’ button
When i refresh the dashboard page this will change to ‘logout’ button

Same happening for logout (localstorage.clear()) function too

i am beginner can anyone help me out with this issue

Thanks

Posts: 1

Participants: 1

Read full topic


Ionic serve error: cannot find module

$
0
0

@sondauta2 wrote:

Hi, when I tried to run ionic serve, not working.
show me this error:


ionic serve

Error: Cannot find module 'json-stable-stringify’
at Function.Module._resolveFilename (module.js:536:15)
at Function.Module._load (module.js:466:25)
at Module.require (module.js:579:17)
at require (internal/module.js:11:18)
at Object. (/Users/mcastillo/Desktop/ionic/wagner-app-cliente/node_modules/webpack/node_modules/ajv/lib/compile/index.js:6:23)
at Module._compile (module.js:635:30)
at Object.Module._extensions…js (module.js:646:10)
at Module.load (module.js:554:32)
at tryModuleLoad (module.js:497:12)
at Function.Module._load (module.js:489:3)

My info is:
cli packages: (/usr/local/lib/node_modules)

@ionic/cli-utils  : 1.18.0
ionic (Ionic CLI) : 3.18.0

global packages:

cordova (Cordova CLI) : 7.1.0

local packages:

@ionic/app-scripts : 2.1.3
Cordova Platforms  : ios 4.5.3
Ionic Framework    : ionic-angular 3.6.0

System:

Android SDK Tools : 26.1.1
ios-deploy        : 1.9.2
Node              : v8.9.1
npm               : 5.5.1
OS                : macOS Sierra
Xcode             : Xcode 9.1 Build version 9B55

Environment Variables:

ANDROID_HOME : /Users/mcastillo/Library/Android/sdk

Misc:

backend : legacy

Posts: 1

Participants: 1

Read full topic

Back button iframe history back problem

$
0
0

@kkarynossang wrote:

I have one iframe in page.

If android device press back button, I want to iframe history go back.

But now, app exit.

How do I fix my Code?

Below is my Code.

------ in html

iframe id is “myframe”

------- in ts

constructor(public navCtrl: NavController) {

console.log("ready");
document.addEventListener("backbutton", () => {

  console.log("click");
  //
  var iframe = document.getElementById('myframe');
  iframe['contentWindow'].history.back();   //doesn't work
  iframe.contentWindow.history.back();  //compile error

}, false);

}

Posts: 1

Participants: 1

Read full topic

Ionic slider events not firing

$
0
0

@ellisjas wrote:

I want to add events to the slides but the events aren’t firing at all.

I am using Ionic version 1.3.3

Here is my code:

<ion-slides options="options" slider="data.slider">
  <ion-slide-page ng-repeat="profile in home.profiles">
    <div class="card image">
      <div id="container-{{profile.$id}}"></div>
    </div>
    <div class="item">
      <h2>{{profile.displayName}}, {{profile.age}} (<i class="ion-heart"></i> {{profile.stars}})</h2>
    </div>
  </ion-slide-page>
</ion-slides>
app.controller('HomeCtrl', function (Auth, $ionicLoading, $scope, $ionicSlideBoxDelegate) {

  var home = this;

  $scope.options = {
    loop: false,
    speed: 800,
    pagination: false,
  };

  $scope.$on('$ionicSlides.sliderInitialized', function (event, data) {
    // data.slider is the instance of Swiper
    console.log('initialized');
    $scope.slider = data.slider;
  });

  $scope.$on('$ionicSlides.slideChangeStart', function (event, data) {
    console.log('Slide change is beginning');
  });

  $scope.$on('$ionicSlides.slideChangeEnd', function (event, data) {
    // note: the indexes are 0-based
    console.log('Slide change ended');
    $scope.activeIndex = data.slider.activeIndex;
    $scope.previousIndex = data.slider.previousIndex;
  });

});

Posts: 1

Participants: 1

Read full topic

Ionic Runtime Error ( A network error)

$
0
0

@valentinay wrote:

Hello I have this problem and i don’t know how to solve it.

A network error (such as timeout, interrupted connection or unreachable host) has occurred.

I read

Install cordova-plugin-whitelist

might fix the problem but the same error still occurs. Any ideas on how to fix it ?

Posts: 1

Participants: 1

Read full topic

mBaas for ionic application ?!

$
0
0

@developer_med wrote:

Hiii guys, there some mBaas (mobile backend) for ionic app who offer some features like data storage and user management and so on for free, if there is what you advice using a predefined backend or built one using php/JEE/.NET/NodeJs ?

Posts: 1

Participants: 1

Read full topic

Viewing all 70446 articles
Browse latest View live


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