Category Archives: Swift, SwiftUI

SwiftUI – MapKit

By | 08/11/2023

In this post, we will see a brief introduction to MapKit and how we can use it in our applications.But first of all, what is MapKit?From Apple web site:“MapKit for SwiftUI allows you to build map-centric views and apps across Apple platforms. You can design expressive and highly interactive Maps with minimal code by composing… Read More »

SwiftUI – Grid

By | 04/10/2023

In this post, we will see how to use Grid, the new container view introduced in iOS 16 that allows us to create simple, yet flexible layouts.It is similar to the LazyVGrid and LazyHGrid views but, it is designed to be easier to use for simpler layouts.To create a Grid view, we simply specify the… Read More »

SwiftUI – Combine

By | 07/06/2023

In this post, we will see what Combine is and how we can use it in our projects.But first of all, what is Combine?Combine is a powerful reactive programming framework introduced by Apple that simplifies the handling of asynchronous events and data flow in applications. By leveraging Combine with SwiftUI, we can create more efficient… Read More »

SwiftUI – Charts

By | 19/04/2023

In this post, we will see how to use the Charts framework added in SwiftUI 4.But first of all, what is Charts?From Apple developer site:“Swift Charts is a powerful and concise SwiftUI framework for transforming your data into informative visualizations. With Swift Charts, you can build effective and customizable charts with minimal code. This framework… Read More »