Remove plugin from ionic
Hi Bennit, On the line I quoted below, I see a reference to "android.json". I cannot help but ask -- how about ios? Bennit: var installedPlugins = require('./plugins/android.json').installed_plugins;...
View ArticleGrid like navigation
I followed this grid navigation on code pen but im having trouble with adding buttons to the icons Please can someone tell me the correct way of doing this thanks
View ArticleSearch bar looking weird at the beginning
Hi, When opening the first time my page, the search bar looks like this: Once I click in it, it looks like normal: Why?
View ArticleIonic 1.2 state transition issue
Hi, I was working on an app using ionic 1.1.1 and updated it to 1.2.1 in ionic 1.1.1 using the same code without any changes everything goes right. I will use numbers to explain my problem better. On...
View ArticleIonic view not updating height after adding img
i solve this with a timeout.. but is amauter =(
View ArticleHow to nicely filter inside an array of object?
You can actually shorten the code with a bit of logic: return this.items.filter((item) => { if (item.id.indexOf(str) >= 0 || item.name.indexOf(str) >= 0 || item.position.indexOf(str) >= 0)...
View ArticleHow to nicely filter inside an array of object?
Also ES6 comes with includes which will replace that ugly indexOf(str) >= 0, supported in the most important browsers like Edge, FF>= 43, Chrome and Opera, and Node >= 4, it would look...
View ArticleI found a solution for some regular background activity!
Hi boltex, I got an app that has to run all the time and survive reboots. The app does an alarm at sunrise time every day. That's the whole point of the app. Set it and forget it until that preference...
View ArticleI found a solution for some regular background activity!
just with the "background-mode" plugin only? I thought i only needed that while I programmed with my device plugged in via USB to debug.. I noticed Android started to close the app when in background...
View Article$cordovaMedia does not work for recording audio
I am trying to record audio using ngCordova plugin. I'm testing it on iOS simulator. The code looks as below. var src = "audio.mp3"; var media = $cordovaMedia.newMedia(src); media.startRecord(); The...
View ArticleControl Ionicon icon size
my html code is here `<div class="list"> <a class="item item-thumbnail-left" herf="#"> <img src="img/image/cover_03.png"> <h2>Here is my resume.</h2> <p> View my...
View ArticleControl Ionicon icon size
@shohan4556 You have a typo right there in your CSS class, you simply missed a T i.ion-chevron-righ***t***{font-size: 300px;color : red;}
View ArticleQuestion about device tokens for push
It depends on what are you using. Assuming that you will use gcm without a third party server:gcm token do expire in some cases:...
View ArticleIonic 2 modals breaking in a tabs layout
There is an issue in the starter for tabs. It does not have a ion-nav element: https://github.com/driftyco/ionic2/issues/877 https://github.com/driftyco/ionic2-starter-tabs It was fixed for the js...
View ArticleBackground-image
Works well for me ! Any idea how to make the background dynamic using an angular variable? Something like:background: url("{{currentBgPath}}")
View Article[ ionic vs cordova ] add plugin plugin-x
I was told that ionic add plugin as opposed to cordova add plugin is a better practice to adapt. but even ionic web site references to the cordova add plugin....
View ArticleionicModal doesn't open until 3rd tap on iPhone
I have set the on-tap value of a div to open a modal which is defined in the page's controller. The div is part of an ng-repeat section. The modal function also accepts some variables passed to it by...
View Article