Your Second iOS & SwiftUI App

Nov 4 2021 · Swift 5.5, iOS 15, Xcode 13

Part 1: List View Fundamentals

02. List Rows

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 01. Introduction Next episode: 03. Models & Views

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

The SwiftUI List View is the backbone of the app you’re going to be creating the UI for in this course. Before we get into Xcode, let’s take a high-level look at what a List is, and how it works.



    HStack {
      Image(systemName: )
      Image(systemName: "book")
        .resizable()
        .scaledToFit()
      Text("Hello, world!")
        .scaledToFill()
        .frame(width: 80, height: 80)
.font(Font.title.weight(.light))
.foregroundColor(.secondary)
.foregroundColor(.secondary🟩.opacity(0.5))
Text("Title")
    .font(.title2)
      Text("Title")
        .font(.title2)
        🟥.padding()