Thanks for the reply
Problems with PdfViewerComponent with ionic 2
Epub reader app with Ionic Framework
Hi, I wanted to use epubjs in my ionic 2 project, but I couldn't get it to work. have you tried epubjs in ionic 2?
Ionic2 App takes too long to start
Which native plugins are you using in this app ? Which ones are you loading in the app.module ?
Ion-checkbox with an external link
Thank you @sambath, works for me!
$ ionic info
global packages:
@ionic/cli-utils : 1.4.0
Cordova CLI : 7.0.1
Ionic CLI : 3.4.0
local packages:
@ionic/app-scripts : 1.1.0
@ionic/cli-plugin-cordova : 1.4.0
@ionic/cli-plugin-ionic-angular : 1.3.1
Cordova Platforms : none
Ionic Framework : ionic-angular 2.3.0
System:
Node : v6.9.5
OS : macOS Sierra
Xcode : Xcode 8.3.3 Build version 8E3004b
ios-deploy : 1.9.1
ios-sim : 5.0.13
npm : 5.0.3
Ionic slider + loop + click event issue
@addwebsolution thanks
I have already tried.
but when apply loop to slider that time index not work proper otherwise its working fine.
Ionic CLI Verifying each time my libraries version
(Post the link to the issue here when you created it)
Adding Windows platform is trying to add cordova-plugin-wkwebview-engine and causing an error
Yeah, the duplication in package.json
and config.xml
can be a nuisance in Cordova 7. Hope this will be removed soon. Let us know if you get it working and how.
Setting Focus to an Input in Ionic
Did you manage to find the solution?
Repsitioning Images within a Card
@AaronSterling I wanted the image to be centered in the card and not to stick to the left side.
Repsitioning Images within a Card
@elvis_gn Hey Mate. Thank you. That worked like a charm. You my friend are a saviour.
Cheers mate.
Component color change (cache or someting else)
I solve it. It call color variable from variables.scss
Something went wrong while > ionic start blankProject in proxy server with secure network
i got an error while used command > ionic start
Note: i'm in proxy serve and also in secure connection. so, i don't have access all links. if you mention me all links fire while used command > ionic start then it would be better for me to send our admin team for access. Please anyone know .
i'm getting error while fire this command after update ionic.
D:\Projects\blankProject>ionic info
[ERROR] Error with .\node_modules\@ionic\app-scripts\package.json file: FILE_NOT_FOUND
global packages:
@ionic/cli-plugin-proxy : 1.3.1
@ionic/cli-utils : 1.4.0
Ionic CLI : 3.4.0
local packages:
@ionic/app-scripts : not installed
@ionic/cli-plugin-ionic-angular : 1.3.1
Ionic Framework : ionic-angular 3.5.0
System:
Node : v6.11.0
OS : Windows 7
Xcode : not installed
ios-deploy : not installed
ios-sim : not installed
npm : 3.10.10
App.feed not Working on iOS on ionSocialApp
Dear all,
I have purchased the ionSocialApp template and successfully made the Facebook login and get feed for Android.
However, when I am tying to run the project in iOS, it successfully builds and logs in Facebook, but does not return the feed for the specific user (using the $state.go('app.feed').
Could you please help me on this? I really do not know how to proceed or what may be the error.
Thanks in advance,
Ionic ERR_FILE_NOT_FOUND(file:///android_asset/www/index.html)
Still not the newest version.
For debugging the white screen:
Did you remote debug the problem on the device already? Follow these instructions here to debug the problem in Chrome dev tools: https://docs.ionic.io/tools/developer/#chrome-inspector Look at the console and network tabs for errors.
Ionic Storage problem
Please create a new project with ionic start
and do only the exact things the docs tell you. Does it work then or do you get the same error? If you still get the error, please upload the whole project to Github and post the link so we can check the exact code.
How to override back button or enrich an ionic component
Hello Folks!
We are using Ionic 3.4.2 for our Desktop and Mobile application.
We would like to set the title and aria-label attributes of the ionic back button.
Is there a generic way to override the ionic back button or is there a easy way to 'enrich' an ionic component?
For now we added the following code inside the ionic page
@ViewChild(Navbar) navbar: Navbar;
ionViewDidEnter () {
let navbar = this.navbar;
let backbutton = navbar.getNativeElement().querySelector('.show-back-button');
if (backbutton !== undefined && backbutton !== null) {
let title = 'back-title';
backbutton.setAttribute("title", title);
}
}
Kind regards
I can't parse json ajax data
So does opening /api
in your browser directly work now?
Does your app successfully call that URL and get the data returned? (Use your browser's dev tools network panel)
Ionic2 App takes too long to start
I'm using AdMob to load the banner ads in my app.
other then that i'm using default plugins.
My plugins are listed below:
"cordova-plugin-admobpro" spec="^2.29.21"
"cordova-plugin-console" spec="^1.0.5"
"cordova-plugin-device" spec="^1.1.4"
"cordova-plugin-splashscreen" spec="^4.0.3"
"cordova-plugin-statusbar" spec="^2.2.2"
"cordova-plugin-whitelist" spec="^1.3.1"
"cordova-plugin-x-toast" spec="^2.6.0"
"ionic-plugin-keyboard" spec="^2.2.1"
InAppBrowser Not Auto Closing
What did you try? Did you do what I wrote?
What code do you have until now?
Normally you listen to page load evens or other events happening in the InAppBrowser. Here is an example of using the Cordova plugin directly (without Ionic Native) that I found in an old project of mine:
browser.addEventListener("loadstart", (event) => {
if ((event.url).indexOf("http://localhost/callback") === 0) {
browser.removeEventListener("exit", (event) => {});
browser.close();
// do things with `event.url` here
}
});
You will probably want to do something similar for another event or another URL.
NavController cache problem
I was able to solve problem by using app.getActiveNav() function.