Explore >> Select a destination


You are here

getstream.io
| | ashishkakkad.com
4.4 parsecs away

Travel
| | SwiftUI announced in WWDC 2019. It's an innovative, exceptionally simple way to build user interfaces across all Apple platforms with the power of Swift. In previous blog I have shared some references from apple documents. We will learn it by examples. First of all let's start with simple UI. Create New Project Create new project ... Read more
| | doordash.engineering
5.8 parsecs away

Travel
| | We compare UIKit's event-driven approach to SwiftUI's data-driven one, then dive into the SwiftUI view cycle, identity, and rendering process
| | swiftwithmajid.com
3.6 parsecs away

Travel
| | During WWDC 23, SwiftUI introduced a new view modifier called visualEffect. This modifier allows us to attach a set of animatable visual effects by accessing layout information of the particular view. This week, we will learn how to use the new visualEffect view modifier in SwiftUI.
| | ashishkakkad.com
25.5 parsecs away

Travel
| In Objective-C we are using a header file to create constant variables like as [code lang="obj-c"] // Objective-C #define APP_ALERT_TITLE "Objective-C Constant" [/code] Swift has new syntax to define the constant (#define) [code lang="obj-c"] // Swift let APP_ALERT_TITLE = "Swift Constants" [/code] Lets try Create a swift file with the constants [code lang="obj-c"] import Foundation ... Read more