Google Maps and Reverse Geocoding In Flutter
In my last post I showed you how to display a Google Map and display your current location on the map by way of geolocation. In this post we will enhance our app in two Read More …
In my last post I showed you how to display a Google Map and display your current location on the map by way of geolocation. In this post we will enhance our app in two Read More …
In this post we will explore how to implement Geolocation in Flutter and plot the location on a Google Map. Before you begin, make sure that you have a Google Maps API Key. You’ll need Read More …
The ListView class will end up being in most Flutter apps that will display a list of data. So it is a good idea to get up to speed with how they are used. This Read More …
Dart mixins are a wonderful language feature that can help you reuse code across classes. In this article we will explore Dart mixins with a working example. In our example we will build several different Read More …
In this article we will explore how to build a Flutter form that can display itself beautifully whether in a portrait or landscape orientation. If you’ve ever built a Flutter form you’ve probably found it Read More …
In this article we will explore the basics of saving data locally in Flutter. There are a few different approaches you can take to get this done but we’ll be exploring the most simplest one Read More …
In this article I’ll teach you how to work with JSON in Dart and Flutter. We’ll cover both encoding and decoding. As a refresher, encoding is the act of taking an object instance and representing Read More …
In this article I will show you how to setup and use Visual Studio Code to develop dart applications. Setup is pretty straight-forward – we shall: Install the Dart SDK Install the Dart Code extension Read More …
Toasts are messages that usually slide in from the top or bottom of the page. Since they slide or ‘pop’ in, they are nick-named toast – you know like toast popping out of your toaster. Read More …
Do you want to build a single Angular application that can be used for multiple clients? This is often referred to as a multi-tenant application. I’ll show you how to build such an app in Read More …