NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills today! >>

Ultimate Portfolio App: Custom sorting for items - alternative approach

Forums > Articles

@cgaaf  

Just posting my alternative approach to the ActionSheet for the Ultimate Portfolio App: Custom sorting for items chapter. I'm accepting of any and all feedback about this approach.

Instead of using the ActionSheet I've opted to use a Menu view to select the sort order. It appears that Apple may be moving in this direction for the design of their own apps. Please refer to how Apple uses a Menu instead of an ActionSheet on the reminders app (Reminders app menu example).

This approach also means that you can use one fewer @State property and directly manage the sort order through a picker.

Here is my approach

@State private var sortOrder = Item.SortOrder.optimized

...

.toolbar {
    ToolbarItem(placement: .primaryAction) {
        if showClosedProjects == false {
            Button {
                withAnimation {
                    dataController.createProject()
                }
            } label: {
                Label("New Project", systemImage: "plus")
            }
        }
    }

    ToolbarItem(placement: .navigationBarLeading) {
        Menu {
            Picker(selection: $sortOrder, label: Text("Sort items")) {
                Text("Optimized").tag(Item.SortOrder.optimized)
                Text("Creation Date").tag(Item.SortOrder.creationDate)
                Text("Title").tag(Item.SortOrder.title)
            }
        } label: {
            Label("Sort", systemImage: "arrow.up.arrow.down")
        }
    }
}

2      

Hacking with Swift is sponsored by Judo

SPONSORED Let’s face it, SwiftUI previews are limited, slow, and painful. Judo takes a different approach to building visually—think Interface Builder for SwiftUI. Build your interface in a completely visual canvas, then drag and drop into your Xcode project and wire up button clicks to custom code. Download the Mac App and start your free trial today!

Try now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.