After update Cordova, it work
Thank Sujan12
Error White Screen After Update Ionic
Using Ionic / NodeJS behind a proxy
Hello there. How to remove the proxy while ionic build? Please help!
Smart glass
Good Morning,
Is it possible to use ionic to develop an app for smart glass(2D)? (epson moverio, google glass etc…)
Thank you
App uses old deployed code and won't update to new one
No. Should I?
If i do that, do users download new version only from there? And after update from google play, they won’t get new version immediately (as my update method is background)?
Also, working this way, it would use my live deploy count pretty fast.
Create a full page white background for loading controller
Hi everyone,
I am using the loading controller to create a loading screen.
However I want it to be full page and opaque so that the user do not see what is happening on the screen when it is loading. the current version has a grey translucent screen
Any idea how that can be done?
Models and providers in Ionic
I created a service for all models. But I am struggling with circular dependencies : as an example, I need to get all users from a car, and the car of a certain user. Should I resolve it by moving these two functions in a “relation” service ?
Charging credit card with Stripe in Ionic app
great! thanks. Hopefully it works well
App rate plugin issue
While i use app rate plugin and try to implement in app.component page. and build properly but when i installed in real device’s app showing blank white screen
Plugins native error: Object(…) is not a function
Hi, I have had problems with an error that I have given certain plugin. In concrete those ones:
import { FilePath } from ‘@ionic-native/file-path/ngx’;
import { FileChooser } from ‘@ionic-native/file-chooser/ngx’;
import { IOSFilePicker } from ‘@ionic-native/file-picker/ngx’;
import { FileOpener } from ‘@ionic-native/file-opener/ngx’;
import { Geolocation } from ‘@ionic-native/geolocation/ngx’;
import { LaunchNavigator } from ‘@ionic-native/launch-navigator/ngx’;
import { Base64 } from ‘@ionic-native/base64/ngx’;
I added the ngx since they were giving me compilation errors (here is the post that solved the problem for me (https://stackoverflow.com/questions/54361396/ionic-3-error-install-native-plugin-after-ionic-4-release)) in my module.app. Once I added the termination of the imports, the application compile but when using any of the funtion of plugins I get the error ERROR TypeError: Object (…) is not a function
I have plugin and ionic versions updated.
Muchas gracias.
Background Geolocation isn't a Observable
For ionic 3 you should user :
you can check my example here :
Add tabs and side menu globally
I am using the latest ionic 4.10.0. I want to create a template with tabs and side menu on every page.I made required changes elsewhere for menu to display.I formatted the app.component.html to look like this.
<ion-app>
<ion-split-pane>
<ion-menu>
<ion-header>
<ion-toolbar>
<ion-title>Menu</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
<ion-menu-toggle auto-hide="false" *ngFor="let p of appPages">
<ion-item [routerDirection]="'root'" [routerLink]="[p.url]">
<ion-icon slot="start" [name]="p.icon"></ion-icon>
<ion-label>
{{p.title}}
</ion-label>
</ion-item>
</ion-menu-toggle>
</ion-list>
</ion-content>
</ion-menu>
<ion-router-outlet main></ion-router-outlet>
</ion-split-pane>
<ion-tabs>
<ion-tab-bar slot="bottom">
<ion-tab-button tab="tab1">
<ion-icon name="home"></ion-icon>
<ion-label>Home</ion-label>
</ion-tab-button>
<ion-tab-button tab="tab2">
<ion-icon name="mic"></ion-icon>
<ion-label>AskBot</ion-label>
</ion-tab-button>
</ion-tab-bar>
</ion-tabs>
</ion-app>
Either the menu works or tab works.Combination of both doesn’t work
Plugins native error: Object(…) is not a function
Hi Jorch.
Can you show your constructor and an example of what’s not working please ?
Thanks
Geolocation getCurrentPosition issue!
problem fixed with
ionic cordova plugin add cordova-plugin-geolocation
npm install --save @ionic-native/geolocation@4
looks like there was an issue with geo version
Repeated local notification not working
Hello,
i am facing the same problem. Did you manage to find a solution ?
Ionic cordova run with –prod stuck at splash for iOS and Android
the program is my program is ionic-3,
and when I copy it to new one (ionic4 now), I have to change a lot of codes.
how can I migrate the all of code to ionic 4 in simple way?
Background Geolocation isn't a Observable
Make sure yo are following the ionic v3 docs and remove ionic native and install using the command
npm install --save @ionic-native/background-geolocation@4
Ionic 4 & Google Maps plugin
hi can ask you for directions
how to draw polyline between two markers ?
thanks
Ionic 4 & Google Maps plugin
(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)
Ionic 4: How to change font size?
I guess there are so many ways to customize the look and feel of your app including the font-size.
1. Overriding Variables
You can put your font-size customization to variables.scss that is located inside your your_app_folder/src/theme/. This will affect all the Sass variables found in Ionic’s source scss files.
2. Modifying app.scss
You can put your font-size customization to app.scss that is located inside your your_app_folder/src/app/. This will affect your styles globally for the entire app and not just one component.
3. Modify specific component
You can put your font-size customization to your-component.scss. This will the style of that specific component, you can use this approach if you want to modify a specific component only.
I am not sure if this answers your question but I hope it can help you in any way
Ionic 4 & Google Maps plugin
how to draw polyline between two markers ?
thanks !