appysharma.com4 Steps to get most out of any tutorial on internet with these scientific techniquesIt is important to learn new things but it's not always easy, especially as an adult. If you are a programmer like me then you know how much we need to learn all the time in this rapidly changing tech world. I think in all fields, growing, and gettin...Jan 5, 2023·4 min read
appysharma.comHow to create a simple like button in SwiftUI ?To create a like button in SwiftUI, you can use a Button view with a label or image indicating that the button is a "like" button. When the button is tapped, you can use a @State variable to track whether the button is liked or not. Here is an exampl...Dec 29, 2022·2 min read
appysharma.comWhat is the difference between let and var in Swift?In Swift, let is used to declare a constant, while var is used to declare a variable. Here are some key differences between let and var in Swift: The value of a constant cannot be changed once it is set, while the value of a variable can be modified...Dec 28, 2022·2 min read