26.3 Creating and Preparing the StorageDemo Project
Begin this tutorial by launching Xcode and selecting the options to create a new Multiplatform App project named StorageDemo.
Begin the project design by selecting the ContentView.swift file and changing the view body so that it contains a TabView as outlined below:
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
SceneStorageView()
.tabItem {
Image(systemName: "circle.fill")
...