Browsing Tag
swift
9 posts
🚀 Your Go-To List of 25 Swift Tools and Libraries for Any Project
GitHub – ivlevAstef/DITranquillity: Dependency injection for iOS (Swift) Dependency injection for iOS (Swift). Contribute to ivlevAstef/DITranquillity development by…
Uma Simples Tela Criada Usando UIKit/ViewCode e Flutter
Criei uma tela bem simples com apenas três elementos dispostos verticalmente: um título, um campo de texto e…
Swift 101: Getting into iOS Development
Hola Mundo! Have you ever heard of Swift?📱 If you’re into mobile development, I’m sure you have. But…
Do You Need the Latest Computer / Software to Learn Programming?
Spoiler alert, the answer is no. But for a moment, I was thrown. I actually told my wife…
Using Container Views with Redux-like state container
During my transition from multiple stores Basics Reducer and Actions Unidirectional flow Side effects Usage State normalization State…
Swift – Data Types Explained
Hello everyone, today I want talk a little bit about Data Types in Swift. Data Types are the…
Redux-like state container in SwiftUI. Unidirectional flow.
…about data flow now. Every view has a read-only access to the state via store object. Views can…
Swift 5.7: Regex. Shorthands for optional unwrapping. Unlock existentials for all protocols.
Shorthands for optional unwrapping if let workingDirectoryMailmapURL { print (workingDirectoryMailmapURL) } while let workingDirectoryMailmapURL { print (workingDirectoryMailmapURL) break…
3 ways to share state in SwiftUI that you NEED to know 🚀💯
It is common in many SwiftUI architecture patterns to separate your logic from your UI into small ObservableObjects…