

·
There are a lot of dependency injection framework in the open source swift world with really cool features like object graph, persistence etc. But what if all you need is a lightweight dependencies container? In this post I will show you how to create it by leveraging the Metatype Type, Generics, the Hashable protocol and the Equatable protocol. [...]

·
SwiftUI has been introduced by Apple during the last WWDC. I started to use it for a personal project to understand its potential. Let's see how I used SwiftUI to create a custom TabBar with modal and detail navigation. [...]

·
React native 0.60.4 has a new cool feature for Android: a new JavaScript engine called Hermes. Let's see how you can turn it on in your React Native application to get all its benefits. [...]
·
PWA offer great native alike offline capabilities. But what about tracking? In this tutorial I will show you how simple it is to implement offline tracking with Google Analytics in your PWA. [...]

·
Implementing a pull to refresh component in vanilla js for your progressive web app (PWA) it's really easy. Let's do it now! [...]

·
Javascript Interface can be helpful when you need to call native code from a webview on Android. [...]

·
Did you know that it is possible to call Swift/Objective-C code from the JavaScript code of a web page displayed inside a WKWebView? [...]