Appsterdam app

In 2022 I created the website and apps for Appsterdam (website). The iOS version is build in #Swift and #SwiftUI. The Android version is build in #Kotlin and #JetpackCompose iOS: Download on the AppStore. Source code Android: Download on the Play Store, Source code.

Safari view in SwiftUI

[This article is not yet done] You started playing around with SwiftUI, and you want to present a Safari(WebView), you search in the documentation, and…, SwiftUI has no native way to display a WebView! To use Safari (SFSafari) you need to create a custom UIViewControllerRepresentable which is needed to use ViewControllers in SwiftUI. This post … Read more

Swipe actions in swift

The issue: Gestures, delegates, it can be a big struggle (especially for beginners). If you use a lot of gestures then you’ll need to implement it over and over.One of the problems is, that code what you write will not apply to other views in your application.If we use a lot of swipe actions, in … Read more