Ionic
How to use iOS Simulator in Split Screen Mode
If you've ever wanted to develop your iOS application(s) alongside your editor (i.e. Visual Studio Code on the left, Simulator on the right), you'll have noticed that it isn't possible on macOS by default. In order to change this, run the following command in your terminal: defaults write

Ionic 5 and React: Geolocation
In this article we'll be looking at how to get the user's current location using the Geolocation plugin alongside our Ionic and React application(s). With this plugin we'll be able to get the user's latitude, longitude , altitude, and so on. VideoWant to see the video for this article? Check

How to show a Toast in Ionic 5 and Vue
Toast. Not the food kind. In this article we're going to look at how we can show Toasts (alerts) within Ionic 5. You'd probably want to use a Toast to display a none-critical message to the user for three to six seconds. By understanding the key actions your user will

Ionic 5: Network Detection with Capacitor
Have you ever been in a situation where you’ve been trying to do something on an application but you haven’t realised you’re offline? Or even worse, you're connected to the dreaded "lie-fi"? Here's a video version of this article! :)I bet your users have, and part of
API Integration Using JavaScript Fetch with Ionic
When it comes to making HTTP requests inside of JavaScript, you can use a variety of different options. For example, you can use XMLHttpRequest, a third party library like Axios, or, fetch. What exactly is Fetch? Fetch is a promise based HTTP request API built in to JavaScript. It's fairly

Ionic 4 with Angular 1.6
Last week I published an early view of how to use Ionic 4 with Vue.js, today I'll be showing you how we can do the same thing with Angular 1.6. Please bare in mind that Ionic 4 is in a super early stage of development and things may

How to use Vue.js with Ionic 4
Have you ever wanted to use Ionic with other frameworks than Angular? Now you can! Ionic 4 is in early alpha, so the implementation is likely to change as time goes on, but let's investigate this with Vue.js: If you haven't already, download the Vue CLI and create a

Ionic 3 and Firebase - User Email Authentication
In this article, we take a look at integrating Firebase user authentication within our Ionic applications. If you haven't set up Firebase inside of your application before, then I'd suggest following my article as a set up guide. Let's create a new project with Ionic and add Firebase/AngularFire2 to