83 followers
Hello ππ» , I am a Software Engineer working on open source and enterprise mobile SDKs for iOS and MacOS developers written in Swift. From π©πͺ and happily living in πΊπΈ
Subscribe to my newsletter and never miss my upcoming articles
Is something wrong with this code? struct ContentView: View { var body: some View { Text("Hello, world!") padding() } } Look closer π§ struct ContentView: View { var body: some View { Text("Hello, world!") ...
This blog post will show you the different iOS keyboard types (screenshots) and how to apply them to SwiftUI views. I will also share a project that can help you build custom keyboard extensions with SwiftUI. Keyboard Types Apple provides 12 types of...
Framework developers need to ensure to document the public APIs of their frameworks. Ideally you advertise the documentation status in your project's README. I got the following question because I showed the documentation status in one of my open-sou...
The open-source Swift package ConfettiSwiftUI lets you to create and customize confetti animations built with SwiftUI. I am impressed by its ease of use and rich customization options. You need to write three lines of code to apply a beautiful confe...
You can use Environment variables to pass secret information to a process at runtime instead of hardcoding that information during build time. Multiple environment variables can be stored in a .env file but should not be committed to your repository....
Automatically find a commit that introduced a bug in a large and frequently updated iOS application