Present an alert with SwiftUI
Presenting an alert is one of the regularly used functionalities when developing apps. Using an alert, you are able to inform users about impossibilities, invalid input or anything else that…
Presenting an alert is one of the regularly used functionalities when developing apps. Using an alert, you are able to inform users about impossibilities, invalid input or anything else that…
SwiftUI offers great functionalities for creating forms. There is a special container named Form, which identifies that a form should be displayed on the screen. All fields between the Form…
Navigation between views is one of the basic parts of knowledge that is needed to build an app with SwiftUI. Using SwiftUI, navigation between views is made much easier then…
SwiftUI is a way to build user interfaces for all Apple platforms. When you're familiar with UIKit, you may know that lists are made using a UITableView. In SwiftUI, lists…
SwiftUI is a markup language that makes it possible to build user interfaces for all Apple platforms using a declarative Swift syntax. This blog post is an introduction to SwiftUI…