A rough guide to testing your React-Native WebViews with Detox
… well, on Android anyway.

Search for a command to run...
… well, on Android anyway.

Developing a mobile application is no small feat. Most apps require some form of integration with multiple systems outside of their own environment. End-to-end testing offers a way to ensure these dependencies work accurately under production-like ci...

JWT (JSON Web Token) is an open standard that allows us to send information that can be verified by a digital signature over the web. It contains a cryptographically signed JSON object and a payload containing claims; it is typically used in HTTP Aut...

Imagine a world where anyone could have access to your emails, social media accounts and medical records — all your sensitive data being accessed without your consent! Basic authentication is one of the many ways of protecting your data on the web. ...

HTTP stands for Hypertext Transfer Protocol — a standard set of rules defining how information systems communicate over the web. How does it work? Imagine your favourite restaurant. The job of the chef is to take requests from customers and provide t...

Adding images is an easy way to bring your application to life. This article tackles the most common issues encountered when adding images to your Flutter application. For each question, we will walk through a possible solution and the UI generated b...

When used correctly, the Text widget is a powerful widget that easily allows the styling and displaying of text. Here are some questions you are likely to ask yourself when dealing with texts How do I change the font of my text? Fonts are important ...

Photo by Omar Flores on Unsplash Being able to receive and send information over the web is an integral part of most mobile applications. This post aims to help you take the first baby steps in understand ‘The Flutter Way’ of making api calls. To do ...

Nearly all things in Flutter are widgets. Buttons are widgets. Texts are widgets. Even animations are defined by widgets. Think of widgets as Lego Blocks — the foundation of which all Flutter applications are built. The anatomy of a widget import 'pa...