Browsing Tag
swift
15 posts
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…