5

What is new in SwiftUI

 3 years ago
source link: https://swiftwithmajid.com/2020/06/23/what-is-new-in-swiftui/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

I have been waiting for this day for the last nine months, and it has finally arrived. We saw the next iteration of the SwiftUI framework. Apple did a great job during the last year by improving SwiftUI and moving it towards to making it a standalone way for building apps for the Apple ecosystem. Today we will take a peek at all-new SwiftUI features.

App structure

Apple provides a brand new way of defining the app’s entry point by using the App protocol. App protocol allows us to easily replace the AppDelegate and SceneDelegate with a single struct that will manage our scenes and app lifecycle. Let’s take a look at a very quick example.

@main
struct CardioBotApp: App {
    @SceneBuilder var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

In the example above, we have a struct that conforms to the App protocol. The only requirement is the body property that should return any Scene . The Scene is another new protocol introduced by SwiftUI that allows us to declare an app scene. SwiftUI comes with a few ready to use implementations, and one of them is WindowGroup . WindowGroup is a scene type that we will mostly use for the main interface of our app that isn’t document-based.

@main
struct CardioBotApp: App {
    @SceneBuilder var body: some Scene {
        DocumentGroup(newDocument: TextFile()) { textFile in
            TextEditor(textFile.$document.text)
        }

        #if os(macOS)
        Settings {
            SettingsView()
        }
        #endif
    }
}

For document-based apps, SwiftUI provides a DocumentGroup scene that automatically handles the navigation through files.

Lazy stacks

One thing that I don’t like about SwiftUI stacks is the eager initialization. Whenever you have ten or thousand views in a stack, SwiftUI tries to create them immediately. Fortunately, it is changed today. The new version of the SwiftUI framework provides us LazyHStack and LazyVStack which create its children only when needed.

import SwiftUI

struct ContentView: View {
    var body: some View {
        ScrollView {
            LazyVStack {
                ForEach(0...1000, id: \.self) { index in
                    Text(String(index))
                        .onAppear { print(index) }
                }
            }
        }
    }
}

Grids

It was so tough to create a photo gallery or calendar layout in SwiftUI without UICollectionView . Nowadays, most of the apps have a screen with a grid layout. It was nearly impossible to create a grid layout efficiently using SwiftUI . Fortunately, now we can do it using the new LazyVGrid and LazyHGrid views. Let’s take a look at a quick example.

import SwiftUI

struct ContentView: View {
    var body: some View {
        ScrollView {
            LazyVGrid(
                columns: Array(
                    repeating: GridItem(.flexible()),
                    count: 3
                )
            ) {
                ForEach(0...1000, id: \.self) { _ in
                    Color.red
                }
            }
        }
    }
}

ScrollView

If you read my post about SwiftUI wishes , you might know that I have been waiting for an ability to scroll to a particular offset using a ScrollView . That part of functionally stopped me from using SwiftUI ’s ScrollView . It is also changed today when Apple released the ScrollViewReader . ScrollViewReader works very similarly to GeometryReader and provides a way to scroll to a specific view using its ID .

import SwiftUI

struct ContentView: View {
    var body: some View {
        ScrollView {
            ScrollViewReader { scrollView in
                LazyVStack {
                    ForEach(0...1000, id: \.self) { index in
                        Text(String(index))
                            .id(index)
                    }
                    Button("Scroll to the middle") {
                        scrollView.scrollTo(500)
                    }
                }
            }
        }
    }
}

TextEditor

One of the most missing components in SwiftUI was TextView . There was no way to edit or type multiline text. We end up with wrapping TextView with UIViewRepresentable , but it doesn’t work well in different circumstances. Finally, this year SwiftUI provides us a TextEditor view that allows us to edit multiline text. Let’s take a look at how we can use it.

import SwiftUI

struct ContentView: View {
    @State private var text = "Hello World!"

    var body: some View {
        TextEditor(text: $text)
    }
}

The usage is pretty similar to TextField , but in this case, we allowed to type very long text examples. There is still no way to use attributed text, but I hope it will arrive during the next betas.

New data flow property wrappers

Besides all the new views that Apple released today, we also have brand new ways to handle data flow in SwiftUI . SwiftUI now includes the AppStorage property wrapper that accesses UserDefauls and invalidates view as soon as corresponding key changes. Let’s take a look at the example.

import SwiftUI

struct ContentView: View {
    @AppStorage("isNotificationsEnabled") var enabled = false

    var body: some View {
        Toggle("Notifications", isOn: $enabled)
    }
}

Another new property wrapper is StateObject . StateObject works similarly to State property wrapper. It allocates memory inside the SwiftUI framework and stores your ObservableObject there. It allows to ObservableObject to survive during view updates.

@main
struct CardioBotApp: App {
    @StateObject var store = Store()

    @SceneBuilder var body: some Scene {
        WindowGroup {
            ContentView()
                .environmentObject(store)
        }
    }
}

New views

There is also a bunch of new views that SwiftUI provides us today. We finally have a system-wide Color picker, native SignInWithAppleButton , ProgressView that supports both linear and circular progress indicators, OutlineGroup that allows us to display tree-structured collections of data, and much more.

Conclusion

I’m delighted to see that the next iteration of SwiftUI is so strong. Of course, I will share with you detailed posts about all new features of SwiftUI as soon as I play with them enough to share something. Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading, and have a nice week!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK