Building Authentication Systems in Swift with the Builder Design PatternLeveraging Design Patterns for Scalable Authentication SystemsDec 9, 2024·4 min read
ACTORs, a way to avoid RACE condition in SwiftWhat is a race condition in general? A race condition is an event that occurs when two or more threads/processes access shared data and try to modify it at the same time, which leads to unpredictable behaviour. The output completely depends on the ti...Mar 19, 2023·5 min read
Types of Callbacks in FlutterBasically, there are 3 types of callbacks in Dart/Flutter. Void Callbacks: These callbacks do not return any value. They are used when we want to act without expecting any result in return. Value Callbacks: These callbacks return a single value. Th...Mar 17, 2023·3 min read