MGMayank Guptainiosmayank.hashnode.dev·May 24, 2022 · 2 min readVisual Effect in SwiftUISwift provides with different ways of displaying visual effects like blur and vibrancy effects. These can mostly be used as background for views and can be used to improve the overall app design. You can observe these blur effects throughout iOS like...00
MGMayank Guptainiosmayank.hashnode.dev·May 13, 2022 · 6 min readFunctions in SwiftThe function is a set of commands/statements. To create a simple function, you first have to define and name it; generally, naming is according to the task you want it to perform. For example: var age = 18 let name = "Krishna" print("Hi, I am " + "\(...00